阅读量:0
Python数据加密可以用于文件。在Python中,可以使用cryptography库来实现对文件的加密和解密。以下是一个使用Fernet对称加密方式对文件进行加密的示例:
首先,需要安装cryptography库,可以使用pip命令进行安装:pip install cryptography
。
然后,可以使用以下代码对文件进行加密和解密:
from cryptography.fernet import Fernet # 生成密钥 key = Fernet.generate_key() cipher_suite = Fernet(key) # 加密文件 with open("file_to_encrypt.txt", "rb") as file: data = file.read() encrypted_data = cipher_suite.encrypt(data) with open("encrypted_file.txt", "wb") as file: file.write(encrypted_data) # 解密文件 with open("encrypted_file.txt", "rb") as file: encrypted_data = file.read() decrypted_data = cipher_suite.decrypt(encrypted_data) with open("decrypted_file.txt", "wb") as file: file.write(decrypted_data)
在上述代码中,首先使用Fernet.generate_key()
生成一个密钥,然后使用该密钥创建一个Fernet对象。接下来,使用cipher_suite.encrypt(data)
对文件内容进行加密,并将加密后的数据写入到一个新的文件中。最后,使用cipher_suite.decrypt(encrypted_data)
对加密后的数据进行解密,并将解密后的数据写入到一个新的文件中。
需要注意的是,为了确保加密和解密过程的正确性,需要对密钥进行妥善保管,避免泄露。同时,加密后的文件大小会比原文件大,因为加密过程中会增加一些额外的数据。