共计 902 个字符,预计需要花费 3 分钟才能阅读完成。
Python 中可以使用加密算法来对文本文件进行加密。常用的加密算法包括 AES、DES、RSA 等。以下是使用 AES 加密算法对文本文件进行加密和解密的示例代码:
from Crypto.Cipher import AES
from Crypto.Random import get_random_bytes
# 生成随机密钥
key = get_random_bytes(16)
# 初始化 AES 加密器
cipher = AES.new(key, AES.MODE_EAX)
# 加密文本文件
with open('plaintext.txt', 'rb') as f:
plaintext = f.read()
ciphertext, tag = cipher.encrypt_and_digest(plaintext)
with open('encrypted.txt', 'wb') as f:
f.write(cipher.nonce)
f.write(tag)
f.write(ciphertext)
# 解密文本文件
with open('encrypted.txt', 'rb') as f:
nonce = f.read(16)
tag = f.read(16)
ciphertext = f.read()
cipher = AES.new(key, AES.MODE_EAX, nonce)
plaintext = cipher.decrypt(ciphertext)
try:
cipher.verify(tag)
with open('decrypted.txt', 'wb') as f:
f.write(plaintext)
except ValueError:
print("Decryption failed")
在上述代码中,首先生成一个随机密钥,然后使用 AES 加密器对文本文件进行加密并保存到 encrypted.txt
文件中。接着读取加密文件,解密并保存到 decrypted.txt
文件中。需要注意的是,加密和解密时需要使用相同的密钥。
丸趣 TV 网 – 提供最优质的资源集合!
正文完