有没有一种简单的方法来用 key 加密/解密字符串?

就像是:

key = '1234'
string =  'hello world'
encrypted_string = encrypt(key, string)
decrypt(key, encrypted_string)

我找不到任何简单的方法可以做到这一点。

最佳答案

http://www.dlitz.net/software/pycrypto/应该做您想要的。

取自他们的文档页面。

>>> from Crypto.Cipher import DES
>>> obj=DES.new('abcdefgh', DES.MODE_ECB)
>>> plain="Guido van Rossum is a space alien."
>>> len(plain)
34
>>> obj.encrypt(plain)
Traceback (innermost last):
  File "<stdin>", line 1, in ?
ValueError: Strings for DES must be a multiple of 8 in length
>>> ciph=obj.encrypt(plain+'XXXXXX')
>>> ciph
'\021,\343Nq\214DY\337T\342pA\372\255\311s\210\363,\300j\330\250\312\347\342I\3215w\03561\303dgb/\006'
>>> obj.decrypt(ciph)
'Guido van Rossum is a space alien.XXXXXX'

关于python - 使用私钥在python中简单加密/解密lib,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3815656/

10-10 14:55