python aes 加密
程序员文章站
2024-02-01 18:18:10
python 进行aes 加密报错,windows pip install pycryptodome 安装Crypto linux pip install pycrypto ......
python 进行aes 加密报错,
windows pip install pycryptodome 安装crypto
linux pip install pycrypto
1 import base64 2 3 from crypto.cipher import aes 4 5 6 def add_to_16(value): 7 while len(value) % 16 != 0: 8 value += '\0' 9 return str.encode(value) 10 11 # 加密方法 12 def encrypt_oracle(self, text): 13 key = '' 14 aes = aes.new(self.add_to_16(key), aes.mode_ecb) 15 pad = lambda s: s + (self.bs - len(s) % self.bs) * chr(self.bs - len(s) % self.bs) 16 encrypt_aes = aes.encrypt(self.add_to_16(pad(text))) 17 encrypted_text = str(base64.encodebytes(encrypt_aes), encoding='utf-8') 18 return encrypted_text 19 20 21 # 解密方法 22 def decrypt_oralce(text): 23 key = '' 24 aes = aes.new(add_to_16(key), aes.mode_ecb) 25 base64_decrypted = base64.decodebytes(text.encode(encoding='utf-8')) 26 decrypted_text = str(aes.decrypt(base64_decrypted), encoding='utf-8').replace('\0', '') 27 return decrypted_text
上一篇: Linux磁盘与文件系统管理(二)
推荐阅读
-
百万年薪python之路 -- day11 -- 函数名的第一类对象及使用
-
Window10下Python3.7 安装与卸载
-
百万年薪python之路 -- 第二周 --模拟博客园系统
-
python aes 加密
-
20190715《Python网络数据采集》第 1 章
-
python全套视频十五期(116G)
-
python-基本运算符(解压缩-必考)
-
python计算两个矩形框重合百分比的实例
-
案例一:利于Python调用JSON对象来实现对XENA流量测试仪的灵活发包测试,能够适应Pair,Rotate,1-to-Many等多种拓扑模型
-
python,看看有没有你需要的列表元祖和range知识!