09/07/14 17:25:01
wget URLリンク(code.krypto.org)
setup.pyを編集
# 113 # The _hashlib module wraps optimized implementations
# 114 # of hash functions from the OpenSSL library.
# 115 exts.append( Extension('_hashlib', ['_hashopenssl.c'],
# 116 include_dirs = [ ssl_inc_dir ],
# 117 library_dirs = [ os.path.dirname(ssl_lib) ],
# 118 libraries = osNameLibsMap[os.name]) )
# 119 exts.append( Extension('_sha', ['shamodule.c']) )
# 120 exts.append( Extension('_md5',
# 121 sources = ['md5module.c', 'md5.c'],
# 122 depends = ['md5.h']) )
URLリンク(inforno.net)