12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
ADADADADAD
编程知识 时间:2024-12-04 20:27:53
作者:文/会员上传
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
Python中可以使用加密算法来对文本文件进行加密。常用的加密算法包括AES、DES、RSA等。以下是使用AES加密算法对文本文件进行加密和解密的示例代码:from Crypto.Cipher impor
以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。
Python中可以使用加密算法来对文本文件进行加密。常用的加密算法包括AES、DES、RSA等。以下是使用AES加密算法对文本文件进行加密和解密的示例代码:
from Crypto.Cipher import AESfrom 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
文件中。需要注意的是,加密和解密时需要使用相同的密钥。
11-20
11-19
11-20
11-20
11-20
11-19
11-20
11-20
11-19
11-20
11-19
11-19
11-19
11-19
11-19
11-19