开发者

Fast DES for Python

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 shou开发者_如何学编程ld 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.


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'
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜