4

好吧,今天我正在检查python中的hashlib模块,但后来我发现了一些我仍然无法弄清楚的东西。

在这个 python 模块中,有一个我无法遵循的导入。我是这样的:

def __get_builtin_constructor(name):
    if name in ('SHA1', 'sha1'):
        import _sha
        return _sha.new

我试图从 python shell 导入 _sha 模块,但似乎无法通过这种方式到达。我的第一个猜测是它是一个 C 模块,但我不确定。

所以告诉我,你们知道那个模块在哪里吗?他们如何导入它?

4

2 回答 2

9

实际上,_sha 模块由 shamodule.c 提供,_md5 由 md5module.c 和 md5.c 提供,并且只有在默认情况下未使用 OpenSSL 编译 Python 时才会构建两者。

您可以setup.py在 Python Source tarball 中找到详细信息。

    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]
于 2011-01-04T03:19:44.430 回答
5

似乎你是 python 安装在 _haslib 而不是 _sha (两个 C 模块)中编译了 sha。来自 python 2.6 中的 hashlib.py:

import _haslib:
    .....
except ImportError:
    # We don't have the _hashlib OpenSSL module?
    # use the built in legacy interfaces via a wrapper function
    new = __py_new

    # lookup the C function to use directly for the named constructors
    md5 = __get_builtin_constructor('md5')
    sha1 = __get_builtin_constructor('sha1')
    sha224 = __get_builtin_constructor('sha224')
    sha256 = __get_builtin_constructor('sha256')
    sha384 = __get_builtin_constructor('sha384')
    sha512 = __get_builtin_constructor('sha512')
于 2011-01-04T02:54:40.340 回答