Python加密错误无法导入名称certificate_transparency

时间:2017-11-18 17:41:53

标签: python cryptography twisted

试图运行一个pymodbus tcp服务器并且我得到这个堆栈跟踪...在这里完全丢失,所以任何帮助表示赞赏。谢谢!

Traceback (most recent call last):
File "Worrking_ModbusJ1939Bridge.py", line 12, in <module>
from pymodbus.server.async import StartTcpServer
File "build/bdist.linux-armv7l/egg/pymodbus/server/async.py", line 18, in <module>
File "build/bdist.linux-armv7l/egg/pymodbus/internal/ptwisted.py", line 5, in <module>
File "/usr/local/lib/python2.7/dist-packages/twisted/conch/manhole_ssh.py", line 14, in <module>
from twisted.conch.ssh import factory, session
File "/usr/local/lib/python2.7/dist-packages/twisted/conch/ssh/factory.py", line 18, in <module>
from twisted.conch.ssh import (_kex, transport, userauth, connection)
File "/usr/local/lib/python2.7/dist packages/twisted/conch/ssh/transport.py", line 345, in <module>
class SSHTransportBase(protocol.Protocol):
File "/usr/local/lib/python2.7/dist-packages/twisted/conch/ssh/transport.py", line 469, in SSHTransportBase
supportedCiphers = _getSupportedCiphers()
File "/usr/local/lib/python2.7/dist-packages/twisted/conch/ssh/transport.py", line 335, in _getSupportedCiphers
backend=default_backend(),
File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/__init__.py", line 15, in default_backend
from cryptography.hazmat.backends.openssl.backend import backend
File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/__init__.py", line 7, in <module>
from cryptography.hazmat.backends.openssl.backend import backend
File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py", line 16, in <module>
from cryptography import utils, x509
File "/usr/local/lib/python2.7/dist-packages/cryptography/x509/__init__.py", line 7, in <module>
from cryptography.x509 import certificate_transparency
ImportError: cannot import name certificate_transparency

6 个答案:

答案 0 :(得分:1)

我正在使用pip 7并遇到同样的问题。升级到点子9解决了它。我不确定原因。

通过:https://github.com/micheloosterhof/cowrie/issues/618

答案 1 :(得分:1)

在尝试使用https://github.com/oracle/solaris-userland/构建系统更新Solaris 11.4的Python Cryptography时,我一直在尝试这样做。 A&#34;简单&#34;更新到pip对我来说不是一个选择,这不是我们做事的方式。

我最终找到了解决方案:我错误地构建了包。

密码学2.1.4取决于cffi&gt; 1.7。与我们发布的版本相比,这两个软件包都有新的可交付位。

无法更新软件包清单以正确跟踪新文件会导致cffi和加密无法导入当前版本所依赖的符号。

[非常感谢Alex Gaynor在#cryptography-dev中让我走上正确的道路来解决这个问题。)

$ python2.7   
Python 2.7.14 (default, Jan 31 2018, 05:35:05) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> from cryptography.hazmat.bindings._openssl import ffi, lib
>>> from cryptography.x509 import certificate_transparency
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/vendor-packages/cryptography/x509/__init__.py", line 7, in <module>
    from cryptography.x509 import certificate_transparency
ImportError: cannot import name certificate_transparency

如果您构建加密并查看它提供的内容,您会发现实际上有一个文件(在Solaris上作为/usr/lib/python-$(PYVER)/vendor-packages/cryptography/x509/certificate_transparency.py提供) - 如果该文件不在其余部分中层次结构,然后你最终得到这个ImportError。

答案 2 :(得分:1)

它对我有用(paramiko的问题):

https://pypi.python.org/pypi/ctutlz/0.7.0

pip install --process-dependency-links ctutlz

答案 3 :(得分:0)

我在使用旧版本的pip(1.4.1)运行Python 2.7.8的RHEL 6.7 x86_64上遇到了类似的问题

因为我一直在安装&#34; cp27m&#34;建立而不是&#34; cp27mu&#34;生成。

使用旧的pip 1.4.1版本,它没有抱怨安装cp27m版本。

当将pip升级到9.0.3时,它会吐出真正的错误......

(bmcs2)bash-4.1 $ pip install cffi-1.11.5-cp27-cp27m-manylinux1_x86_64.whl 此平台上不支持cffi-1.11.5-cp27-cp27m-manylinux1_x86_64.whl。

(bmcs2)bash-4.1 $ pip install cryptography-2.1.3-cp27-cp27m-manylinux1_x86_64.whl cryptography-2.1.3-cp27-cp27m-manylinux1_x86_64.whl在此平台上不受支持。

&#34; ImportError:无法导入名称certificate_transparency&#34;使用&#34; cp27mu&#34;建立。当使用&#34; cp27mu&#34;构建,pip 1.4.1和pip 9.0.3版本都运行良好。

cffi-1.11.5-cp27-cp27m-manylinux1_x86_64.whl与cffi-1.11.5-cp27-cp27mu-manylinux1_x86_64.whl

cryptography-2.1.3-cp27-cp27m-manylinux1_x86_64.whl与cryptography-2.1.3-cp27-cp27mu-manylinux1_i686.whl

更多信息: https://www.python.org/dev/peps/pep-0513/#ucs-2-vs-ucs-4-builds

答案 4 :(得分:0)

我认为这更像是paramiko问题而不是点子。在我的环境中,升级pip不能解决此问题,因此我不得不将paramiko版本降级为不具有libffi依赖项的版本,这对我有用:

pip2.7 install paramiko==1.17.0

此问题与:https://github.com/paramiko/paramiko/issues/1401

答案 5 :(得分:0)

尝试在AWS Lambda中运行Scrapy(使用zip文件进行部署)时遇到此错误。

我按照https://www.perrygeo.com/running-python-with-compiled-code-on-aws-lambda.html中的说明进行操作,该说明基本上指导您启动Amazon Linux EC2实例,安装要求并从中构建zip。

设置完所有内容后,我创建的第一个程序包仍然给我同样的错误,但是我意识到这是因为隐藏文件夹.libs_cffi_backend丢失了。该文件夹包含一个.so文件,如果不存在该文件将导致ImportError。强制包含它之后,它就起作用了。