0

我正在创建一个 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_blockkey有很多问号字符。

为什么我没有得到预期的答案?似乎一切都应该顺利进行。也许我在字符串的编码方面犯了一些错误。

编辑

自包含代码:

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
4

2 回答 2

1

首先,使用字节串:

In [14]: keystring = "AE 68 52 F8 12 10 67 CC 4B F7 A5 76 55 77 F3 9E"

In [15]: keystring.replace(' ', '').decode('hex')
Out[15]: '\xaehR\xf8\x12\x10g\xccK\xf7\xa5vUw\xf3\x9e'

其次,你不应该使用 base64。

于 2013-04-01T00:24:29.550 回答
1

首先,正确的 CTR 块顺序是nonce + iv + ctr. 其次,这个base64.b64decode调用是错误的:cipher.encrypt产生一个解码的字符串。在这两个修复后,您的代码打印0xb70x600x330x280xdb0xc20x930x1b0x410xe0x160xc80x60x7e0x620xdf似乎是正确的密钥流。

于 2013-04-01T01:12:04.240 回答