python aes 加密

2019-05-13 07:15:53来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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

 


原文链接:https://www.cnblogs.com/yubs/p/10846045.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:课堂笔记1

下一篇:python初体验 ——>>> 模拟体育竞技