如何在python中导入OpenSSL

时间:2015-06-02 17:33:18

标签: python python-2.7 openssl

我正在尝试运行这个简单的代码来检索SSL证书:

import ssl, socket

#print ssl.get_server_certificate(('www.google.com', 443))
cert=ssl.get_server_certificate(('www.google.com', 443))
# OpenSSL
x509 = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, cert)
x509.get_subject().get_components()

但我得错误说:

Traceback (most recent call last):
  File "C:\Users\e\Desktop\Python\ssl\test.py", line 6, in <module>
    x509 = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, cert)
NameError: name 'OpenSSL' is not defined

我知道我必须导入OpenSSL。但是我不知道怎么做?从哪里获得OpenSSL? 我从https://pypi.python.org/pypi/pyOpenSSL下载了一个名为pyOpenSSL的模块 其中包含两个文件夹:pyOpenSSL-0.15.1.dist-info和OpenSSL。 当我尝试添加导入OpenSSL或导入pyOpenSSL时,我收到错误。 你能解释清楚,如何导入这些库或模块?他们应该放在哪里?如果不在我的代码文件的同一目录中?如何在导入语法中编写路径? 请帮忙。

修改 当我试图在代码中添加from OpenSSL import SSL时,我得到了:

    C:\Users\e\Desktop\Python\ssl>test.py
Traceback (most recent call last):
  File "C:\Users\e\Desktop\Python\ssl\test.py", line 2, in <module>
    from OpenSSL import SSL
  File "C:\Users\e\Desktop\Python\ssl\OpenSSL\__init__.py", line 8, in <module>
    from OpenSSL import rand, crypto, SSL
  File "C:\Users\e\Desktop\Python\ssl\OpenSSL\rand.py", line 9, in <module>
    from six import integer_types as _integer_types
ImportError: No module named six

1 个答案:

答案 0 :(得分:45)

来自tests

from OpenSSL import SSL

对编辑的回复:pip install pyopenssl应该安装了六个。如果您尝试自行安装,我不会这样做,但您可以使用pip install six cryptography手动安装依赖项,然后导入应该可以正常工作。如果没有,请发表评论,我会做进一步的调查。

对评论的回复:installing pip on windows上有说明。