我正在通过将 JavaScript 移植到 Python 来为 API 制作包装器。
它将列表作为密钥传递给 AES 生成器,例如:
[1885434739, 825373440, 0, 0]
然而,这给了我错误:
TypeError: 'list' does not support the buffer interface
有谁知道我如何使用列表作为密钥来获得 Pycrypto AES 加密,因为它是一个 API,我无法更改输入是列表的要求。谢谢你。
当前代码示例:
test_key = [1885434739, 825373440, 0, 0]
aes = AES.new(test_key, AES.MODE_ECB)
print(aes)