0

我正在尝试使用使用 RSA 密钥加密文件的 pycryptodome 示例。示例如下

from Crypto.PublicKey import RSA
from Crypto.Random import get_random_bytes
from Crypto.Cipher import AES, PKCS1_OAEP

file_out = open("encrypted_data.bin", "wb")

recipient_key = RSA.import_key(open("receiver.pem").read())
session_key = get_random_bytes(16)

# Encrypt the session key with the public RSA key
cipher_rsa = PKCS1_OAEP.new(recipient_key)
file_out.write(cipher_rsa.encrypt(session_key))

# Encrypt the data with the AES session key
cipher_aes = AES.new(session_key, AES.MODE_EAX)
ciphertext, tag = cipher_aes.encrypt_and_digest(data)
[ file_out.write(x) for x in (cipher.nonce, tag, ciphertext) ]

我收到的错误是

AttributeError:模块“Crypto.PublicKey.RSA”没有属性“import_key”

我发现了另一个线程,该错误被确定为 pyCrypto 的版本问题,但我正在尝试使用 PyCryptodome 并且我确实拥有最新版本。

4

1 回答 1

0

该方法import_key是在PyCryptodome v3.4中添加的。如果您收到该错误消息,则意味着您实际上正在使用 PyCrypto 或旧版本的 PyCryptodome。

于 2017-11-14T12:20:42.163 回答