适用于 Python 的快速 DES

发布于 2024-11-04 08:50:55 字数 228 浏览 2 评论 0原文

我正在寻找 python 的编译 des 实现。 M2Crypto 不适用于我,并出现错误消息“ImportError:DLL 加载失败:”。 OpenSSLLight 已安装。

编辑:好的,已使用 M2Crypto 修复。由于某些原因,如果您在安装 SSLLight 期间选择将库放在程序目录中,则程序将无法识别它们。我重新安装了 openssllight,并将库放入 windows 目录中,现在 M2Crypto 加载。

i am searching for compiled des implementation for python. M2Crypto don't work for me with error message "ImportError: DLL load failed:". OpenSSLLight installed.

Edit: ok, fixed with M2Crypto. For some reasons, if you select during the installation of SSLLight that the libraries should be placed in the program directory, they are not recognised by programs. I reinstalled openssllight with placing the libs into windows dir, and now M2Crypto loads.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

焚却相思 2024-11-11 08:50:56

Pycrypto 支持 DES/DES3 并具有 来自 Voidspace 的预构建 Windows 安装程序。快速示例:

from Crypto.Cipher import DES
des = DES.new('13371337', DES.MODE_ECB)
des.encrypt('plaintxt')

'\xeb\x9d\xe7~&\xb4fp'

Pycrypto supports DES/DES3 and has prebuilt Windows installers from Voidspace. Quick example:

from Crypto.Cipher import DES
des = DES.new('13371337', DES.MODE_ECB)
des.encrypt('plaintxt')

'\xeb\x9d\xe7~&\xb4fp'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文