📜  pycryptodome rsa encrypt - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:04.435000             🧑  作者: Mango

代码示例2
from Crypto.Cipher import AES
from Crypto.Random import get_random_bytes

key = get_random_bytes(16)
cipher = AES.new(key, AES.MODE_EAX)
ciphertext, tag = cipher.encrypt_and_digest(data)

file_out = open("encrypted.bin", "wb")
[ file_out.write(x) for x in (cipher.nonce, tag, ciphertext) ]
file_out.close()