中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

python文本文件加密的方法是什么

小億
124
2024-04-15 09:47:06
欄目: 編程語言

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文件中。需要注意的是,加密和解密時需要使用相同的密鑰。

0
奎屯市| 苏尼特右旗| 定南县| 县级市| 河北省| 西藏| 西平县| 闽侯县| 玛多县| 宁都县| 洛扎县| 南城县| 德令哈市| 海兴县| 桂林市| 金昌市| 榆社县| 明水县| 启东市| 绥化市| 齐齐哈尔市| 韶关市| 札达县| 巴青县| 开平市| 新郑市| 东阳市| 房山区| 萨迦县| 蒙阴县| 武鸣县| 江都市| 石棉县| 钟祥市| 乌海市| 若羌县| 胶南市| 和田县| 莆田市| 弥渡县| 荃湾区|