作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
嗯,今天我在查python中的hashlib模块,但后来我发现了一些我仍然想不通的东西。
在这个 python 模块中,有一个我无法理解的导入。我是这样的:
def __get_builtin_constructor(name):
if name in ('SHA1', 'sha1'):
import _sha
return _sha.new
我尝试从 python shell 导入 _sha 模块,但似乎无法通过这种方式访问它。我的第一个猜测是它是一个 C 模块,但我不确定。
那么告诉我,你们知道那个模块在哪里吗?他们如何导入它?
最佳答案
实际上,_sha 模块由 shamodule.c 提供,_md5 由 md5module.c 和 md5.c 提供,并且只有当您的 Python 默认未使用 OpenSSL 编译时,才会构建这两个模块。
您可以在 Python 源代码压缩包的 setup.py
中找到详细信息。
if COMPILED_WITH_PYDEBUG or not have_usable_openssl:
# The _sha module implements the SHA1 hash algorithm.
exts.append( Extension('_sha', ['shamodule.c']) )
# The _md5 module implements the RSA Data Security, Inc. MD5
# Message-Digest Algorithm, described in RFC 1321. The
# necessary files md5.c and md5.h are included here.
exts.append( Extension('_md5',
sources = ['md5module.c', 'md5.c'],
depends = ['md5.h']) )
大多数情况下,您的 Python 是使用 Openssl 库构建的,在这种情况下,这些函数由 OpenSSL 库本身提供。
现在,如果您想要单独使用它们,那么您可以在没有 OpenSSL 的情况下构建您的 Python,或者更好的是,您可以使用 pydebug 选项构建并拥有它们。
来自您的 Python 源代码压缩包:
./configure --with-pydebug
make
你去吧:
>>> import _sha
[38571 refs]
>>> _sha.__file__
'/home/senthil/python/release27-maint/build/lib.linux-i686-2.7-pydebug/_sha.so'
[38573 refs]
关于python - _sha 在 python hashlib 中导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4590242/
嗯,今天我在查python中的hashlib模块,但后来我发现了一些我仍然想不通的东西。 在这个 python 模块中,有一个我无法理解的导入。我是这样的: def __get_builtin_con
我是一名优秀的程序员,十分优秀!