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)
對加密后的數據進行解密,并將解密后的數據寫入到一個新的文件中。
需要注意的是,為了確保加密和解密過程的正確性,需要對密鑰進行妥善保管,避免泄露。同時,加密后的文件大小會比原文件大,因為加密過程中會增加一些額外的數據。