ValueError:AES密钥必须是16,24或32字节长PyCrypto 2.7a1

时间:2016-08-20 10:51:39

标签: python python-3.x cryptography pycrypto

我正在为我的学校项目制作程序,并且上面有一个问题。 这是我的代码:

def aes():
    #aes
    os.system('cls')
    print('1. Encrypt')
    print('2. Decrypt')

    c = input('Your choice:')

    if int(c) == 1:
        #cipher
        os.system('cls')
        print("Let's encrypt, alright")
        print('Input a text to be encrypted')
        text = input()

        f = open('plaintext.txt', 'w')
        f.write(text)
        f.close()

        BLOCK_SIZE = 32
        PADDING = '{'
        pad = lambda s: s + (BLOCK_SIZE - len(s) % BLOCK_SIZE) * PADDING
        EncodeAES = lambda c, s: base64.b64encode(c.encrypt(pad(s)))
        secret = os.urandom(BLOCK_SIZE)

        f = open('aeskey.txt', 'w')
        f.write(str(secret))
        f.close()

        f = open('plaintext.txt', 'r')
        privateInfo = f.read()
        f.close()

        cipher = AES.new(secret)

        encoded = EncodeAES(cipher, privateInfo)

        f = open('plaintext.txt', 'w')
        f.write(str(encoded))
        f.close()
        print(str(encoded))

    if int(c) == 2:
        os.system('cls')
        print("Let's decrypt, alright")

        f = open('plaintext.txt','r')
        encryptedString = f.read()
        f.close()

        PADDING = '{'
        DecodeAES = lambda c, e: c.decrypt(base64.b64decode(e)).rstrip(PADDING)
        encryption = encryptedString

        f = open('aeskey.txt', 'r')
        key = f.read()
        f.close()

        cipher = AES.new(key)
        decoded = DecodeAES(cipher, encryption)

        f = open('plaintext.txt', 'w')
        f.write(decoded)
        f.close()

        print(decoded)

完整错误文字:

Traceback (most recent call last): File "C:/Users/vital/Desktop/Prog/Python/Enc_dec/Enc_dec.py", line 341, in aes() 
File "C:/Users/vital/Desktop/Prog/Python/Enc_dec/Enc_dec.py", line 180, in aes cipher = AES.new(key) 
File "C:\Users\vital\AppData\Local\Programs\Python\Python35-32\lib\site-packages\Crypto\Cipher\AES.py", line 179, in new return AESCipher(key, *args, **kwargs) 
File "C:\Users\vital\AppData\Local\Programs\Python\Python35-32\lib\site-packages\Crypto\Cipher\AES.py", line 114, in init blockalgo.BlockAlgo.init(self, _AES, key, *args, **kwargs) 
File "C:\Users\vital\AppData\Local\Programs\Python\Python35-32\lib\site-packages\Crypto\Cipher\blockalgo.py", line 401, in init self._cipher = factory.new(key, *args, **kwargs)
ValueError: AES key must be either 16, 24, or 32 bytes long

Process finished with exit code 1

我做错了什么?

1 个答案:

答案 0 :(得分:4)

错误很明显。密钥必须与该大小完全相同。 os.urandom会返回正确的密钥。但是,此键是字节(二进制字符串值)。此外,通过使用str(secret)repr(secret)的值将写入文件而不是secret

更令人困惑的是AES.new允许您将密钥作为Unicode传递!但是,假设密钥是ASCII字节1234123412341234。现在,

f.write(str(secret))

会将b'1234123412341234'写入文本文件!它现在包含16个字节+ b和两个'引号字符,而不是16个字节;总共19个字节。

或者如果您从os.urandom中获取随机二进制字符串,

>>> os.urandom(16)
b'\xd7\x82K^\x7fe[\x9e\x96\xcb9\xbf\xa0\xd9s\xcb'

现在,它不是写入16个字节D782,...等等,而是将该字符串写入文件。并且因为解密试图使用

而发生错误
"b'\\xd7\\x82K^\\x7fe[\\x9e\\x96\\xcb9\\xbf\\xa0\\xd9s\\xcb'"

作为解密密钥,当编码为UTF-8时导致

b"b'\\xd7\\x82K^\\x7fe[\\x9e\\x96\\xcb9\\xbf\\xa0\\xd9s\\xcb'"

这是一个49字节长的bytes值。

你有2个不错的选择。您可以继续将密钥写入文本文件,但将其转换为十六进制,或将密钥写入二进制文件;那么文件应该是以字节为单位的密钥长度。我在这里寻找后者:

因此,要存储密钥,请使用

    with open('aeskey.bin', 'wb') as keyfile:
        keyfile.write(secret)

    with open('aeskey.bin', 'rb') as keyfile:
        key = keyfile.read()

同样自然适用于密文(即加密的二进制文件),您必须在二进制文件中写入和读取它:

    with open('ciphertext.bin', 'wb') as f:
        f.write(encoded)

    with open('ciphertext.bin', 'rb') as f:
        encryptedString = f.read()

如果您想对其进行64位编码,请注意base64.b64encode/decodebytes - 位于/ bytes - out。

顺便说一下,plaintext是原始的,未加密的文字;加密文本称为ciphertext。 AES是一种密码,可以将明文加密为密文,并使用密钥将密文解密为明文。

尽管这些被称为“-text”,但它们本身都不是文本数据,正如Python所理解的那样,但它们是二进制数据,应该表示为bytes