Python实行任意文件的加密—解密

本文涉及的产品
密钥管理服务KMS,1000个密钥,100个凭据,1个月
简介: Python实行任意文件的加密—解密

Python实行任意文件的加密—解密
环 境:

系统:macOS Sonoma

IDE:PyCharm 2024 Professional Edition

源代码如下:

from cryptography.fernet import Fernet
import os

# 定义一个加密类
class Encrypt:
    # 参数是需要被加密的文件
    def __init__(self, input_file):
        # 加密的密钥
        self.key = None
        self.input_file = input_file
        # 加密文件的名字
        self.encrypted_file = os.path.basename(input_file).split('.')[0]+'_encrypted.' + os.path.basename(input_file).split('.')[1]

    # 定义一个加密方法
    def encrypt_file(self):
        self.key = Fernet.generate_key()
        cipher_suite = Fernet(self.key)
        if os.path.isfile(input_file) and os.path.exists(input_file):
        # 把加密的密钥保存到指定的文件夹,记住保存好,否则无法解密
            with open(os.path.dirname(input_file) + '/' + os.path.basename(input_file).split('.')[0] + '_key.txt', 'wb') as f:
                f.write(self.key)

            with open(self.input_file, 'rb') as file:
                file_data = file.read()

            encrypted_data = cipher_suite.encrypt(file_data)
            # 生成加密文件
            with open(os.path.dirname(input_file) + '/' + self.encrypted_file, 'wb') as file:
                file.write(encrypted_data)
            print('加密成功!注意保管加密的密钥!!')
            return True
        else:
            print('加密失败!')
            return False

# 定义一个解密的类
class Decrypt:
    # 被加密的文件和加密时生成的密钥作为参数, 需要完整的路径
    def __init__(self, encrypted_file, input_key):
        self.encrypted_file = encrypted_file
        self.decrypted_file_name = os.path.basename(self.encrypted_file).split('.')[0].strip('_encrypted') + os.path.basename(self.encrypted_file).split('.')[1]
        self.key = input_key
        # 需要解密的加密文件的路径
        self.path = os.path.dirname(self.encrypted_file)

    # 定义一个解密方法
    def decrypt_file(self):
        if os.path.isfile(self.encrypted_file) and os.path.exists(self.encrypted_file):
            with open(self.key, 'rb') as f:
                self.key = f.read()
            cipher_suite = Fernet(self.key)

            with open(self.encrypted_file, 'rb') as file:
                encrypted_data = file.read()

            decrypted_data = cipher_suite.decrypt(encrypted_data)
            with open(self.path + '/'+ self.decrypted_file_name + '_decrypted'
                      +
                      '.' + os.path.basename(self.encrypted_file).split('.')[1], 'wb') as file:
                file.write(decrypted_data)
            print('解密成功!')
            return True
        else:
            print('解密失败!')
            return False


if __name__ == '__main__':
      # 输出一个菜单
    print('= ' * 15)
    print('1. 加密'.center(20, ' '))
    print('2. 解密'.center(20, ' '))
    print('= ' * 10)
    choice = input('请输入您的选择:')
    if int(choice) == 1:
        input_file = input('请输入要加密的文件(包括完整路径):')
        encrypt_file = Encrypt(input_file)
        encrypt_file.encrypt_file()

    if int(choice) == 2:
        input_file = input('请输入要解密的文件(包括完整路径):')
        input_key = input('请输入要解密的密钥(包括完整的路径):')
        Decrypt(input_file, input_key).decrypt_file()

运行结果如下图所示:

image.png
image.png
image.png
image.png

⚠️:部分加密的代码由AI生成!感谢这个伟大的AI时代。真是太给力了,大大的提高了工作效率。

相关文章
|
1月前
|
自然语言处理 数据处理 Python
python操作和解析ppt文件 | python小知识
本文将带你从零开始,了解PPT解析的工具、工作原理以及常用的基本操作,并提供具体的代码示例和必要的说明【10月更文挑战第4天】
286 60
|
27天前
|
安全 Linux 数据安全/隐私保护
python知识点100篇系列(15)-加密python源代码为pyd文件
【10月更文挑战第5天】为了保护Python源码不被查看,可将其编译成二进制文件(Windows下为.pyd,Linux下为.so)。以Python3.8为例,通过Cython工具,先写好Python代码并加入`# cython: language_level=3`指令,安装easycython库后,使用`easycython *.py`命令编译源文件,最终生成.pyd文件供直接导入使用。
python知识点100篇系列(15)-加密python源代码为pyd文件
|
10天前
|
开发者 Python
Python中__init__.py文件的作用
`__init__.py`文件在Python包管理中扮演着重要角色,通过标识目录为包、初始化包、控制导入行为、支持递归包结构以及定义包的命名空间,`__init__.py`文件为组织和管理Python代码提供了强大支持。理解并正确使用 `__init__.py`文件,可以帮助开发者更好地组织代码,提高代码的可维护性和可读性。
13 2
|
1月前
|
Linux 区块链 Python
Python实用记录(十三):python脚本打包exe文件并运行
这篇文章介绍了如何使用PyInstaller将Python脚本打包成可执行文件(exe),并提供了详细的步骤和注意事项。
51 1
Python实用记录(十三):python脚本打包exe文件并运行
|
1月前
|
数据安全/隐私保护 Python
Zipfile学习笔记(二)::通过zipfile模块暴力破解加密的压缩文件
如何使用Python的zipfile模块生成密码表并尝试暴力破解加密的ZIP压缩文件。
32 1
Zipfile学习笔记(二)::通过zipfile模块暴力破解加密的压缩文件
|
26天前
|
Java Python
> python知识点100篇系列(19)-使用python下载文件的几种方式
【10月更文挑战第7天】本文介绍了使用Python下载文件的五种方法,包括使用requests、wget、线程池、urllib3和asyncio模块。每种方法适用于不同的场景,如单文件下载、多文件并发下载等,提供了丰富的选择。
|
26天前
|
数据安全/隐私保护 流计算 开发者
python知识点100篇系列(18)-解析m3u8文件的下载视频
【10月更文挑战第6天】m3u8是苹果公司推出的一种视频播放标准,采用UTF-8编码,主要用于记录视频的网络地址。HLS(Http Live Streaming)是苹果公司提出的一种基于HTTP的流媒体传输协议,通过m3u8索引文件按序访问ts文件,实现音视频播放。本文介绍了如何通过浏览器找到m3u8文件,解析m3u8文件获取ts文件地址,下载ts文件并解密(如有必要),最后使用ffmpeg合并ts文件为mp4文件。
|
1月前
|
JSON 数据格式 Python
Python实用记录(十四):python统计某个单词在TXT/JSON文件中出现的次数
这篇文章介绍了一个Python脚本,用于统计TXT或JSON文件中特定单词的出现次数。它包含两个函数,分别处理文本和JSON文件,并通过命令行参数接收文件路径、目标单词和文件格式。文章还提供了代码逻辑的解释和示例用法。
38 0
Python实用记录(十四):python统计某个单词在TXT/JSON文件中出现的次数
|
1月前
|
Python
Python实用记录(十二):文件夹下所有文件重命名以及根据图片路径保存到新路径下保存
这篇文章介绍了如何使用Python脚本对TTK100_VOC数据集中的JPEGImages文件夹下的图片文件进行批量重命名,并将它们保存到指定的新路径。
32 0
|
3月前
|
SQL JSON 关系型数据库
n种方式教你用python读写excel等数据文件
n种方式教你用python读写excel等数据文件