【问题标题】:PyCryptodome AES CBC encryption does not give desired outputPyCryptodome AES CBC 加密未提供所需的输出
【发布时间】:2018-11-15 21:39:10
【问题描述】:

我正在尝试使用 Pycryptodome (3.7.0) 在 Python (2.7.14) 中使用 CBC 模式在 AES 中加密和解密简单文本

这是我尝试加密的代码:

from Crypto.Cipher import AES
from Crypto.Util import Padding
import base64
encryption_key = "1111111111111111111111111111111111111111111111111111111111111111".decode("hex")
text = "Test text"
text_padded = Padding.pad(text, AES.block_size)
iv = "0000000000000000"
cipher = AES.new(encryption_key, AES.MODE_CBC, iv)
cipher_enc = cipher.encrypt(text_padded)
encrypted = iv + cipher_enc
print encrypted
print base64.b64encode(encrypted)
print encrypted.encode("hex")
print base64.b64encode(encrypted).encode("hex")

输出是

0000000000000000X???]????H?
MDAwMDAwMDAwMDAwMDAwMFje9RzRXc3LHt8GBBLTSPQ=
3030303030303030303030303030303058def51cd15dcdcb1edf060412d348f4
4d4441774d4441774d4441774d4441774d4441774d466a6539527a525863334c4874384742424c545350513d

但是当我向http://aes.online-domain-tools.com/输入相同的键、文本和初始向量值时,我得到了不同的结果。

输出为:6a56bc5c0b05892ae4e63d0ca6b3169b

截图如下:

我做错了什么?如何通过pycrypto获取在线加密网站的输出值?

【问题讨论】:

    标签: python encryption pycrypto pycryptodome


    【解决方案1】:

    python 3 中的第一个:python 3 对字节和字符串的要求要严格得多。

    这再现了给定的例子:

    from Crypto.Cipher import AES
    
    encryption_key = 32 * b'\x11'
    text = "Test text".encode()
    text_padded = text + (AES.block_size - (len(text) % AES.block_size)) * b'\x00'
    iv = 16 * b'\x00'
    cipher = AES.new(encryption_key, AES.MODE_CBC, iv)
    cipher_enc = cipher.encrypt(text_padded)
    print(encryption_key.hex())
    print(iv.hex())
    print(cipher_enc.hex())
    
    # 1111111111111111111111111111111111111111111111111111111111111111
    # 00000000000000000000000000000000
    # 6a56bc5c0b05892ae4e63d0ca6b3169b
    

    注意,不需要encrypted = iv + cipher_enc;您已经在 CBC 模式下运行 AES。


    让它也能在 python 2 上运行:

    from Crypto.Cipher import AES
    
    encryption_key = 32 * b'\x11'
    text = "Test text".encode()
    text_padded = text + (AES.block_size - (len(text) % AES.block_size)) * b'\x00'
    iv = 16 * b'\x00'
    cipher = AES.new(encryption_key, AES.MODE_CBC, iv)
    cipher_enc = cipher.encrypt(text_padded)
    print(encryption_key.encode('hex'))
    print(iv.encode('hex'))
    print(cipher_enc.encode('hex'))
    

    【讨论】:

    • 非常感谢,我想我的问题是没有使用 b'' 符号并再次添加初始向量值。
    猜你喜欢
    • 1970-01-01
    • 2018-09-20
    • 2013-08-11
    • 2015-09-16
    • 1970-01-01
    • 2019-03-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多