我正在创建一个 Python 函数来使用PyCrypto模块执行计数器模式加密。我知道内置的,但想自己实现它。
我正在尝试 来自 RFC 3686 的 Test Vector #1,并且具有正确的计数器块和正确的 ASCII 形式的密钥。但是当我使用密钥加密计数器块时,我没有得到预期的密钥流。
我的代码的相关部分:
cipher = AES.new(key)
ctr_block = iv + nonce + ctr
key_stream = base64.b64decode(cipher.encrypt(ctr_block))
如果需要,我可以提供更多代码,但我不确定如何,因为当我打印它们ctr_block
时key
有很多问号字符。
为什么我没有得到预期的答案?似乎一切都应该顺利进行。也许我在字符串的编码方面犯了一些错误。
编辑
自包含代码:
from Crypto.Cipher import AES
import base64
def hex_to_str(hex_str):
return str(bytearray([int(n, 16) for n in hex_str.split()]))
key = hex_to_str("AE 68 52 F8 12 10 67 CC 4B F7 A5 76 55 77 F3 9E")
iv = hex_to_str("00 00 00 00 00 00 00 00")
nonce = hex_to_str("00 00 00 30")
ctr = hex_to_str("00 00 00 01")
cipher = AES.new(key)
ctr_block = iv + nonce + ctr
key_stream = base64.b64decode(cipher.encrypt(ctr_block))
print "".join([hex(ord(char)) for char in key_stream])
# 0xd90xda0x72