今天下午安装一个aes的错误,各种解决都不行,虽然安装了依赖包,但是还是报错: moduleNotFoundError: No module named ‘Crypto’
代码如下:
今天解决了,特来记录一下:
安装Crypto 模块,执行 ,还是报错,需要我们进入py目录改包的名字,把这2个改成大写的C即可,如果没有这2个文件,请重新pip
pip install Crypto
第二步安装这个包:
pip install pycryptodome
#!/usr/bin/python3
# -*- coding:utf-8 -*-
import base64
from Crypto.Cipher import AES
class EncryptDate:
def __init__(self, key):
self.key = key.encode('utf-8') # 初始化密钥
self.length = AES.block_size # 初始化数据块大小
self.aes = AES.new(self.key, AES.MODE_ECB) # 初始化AES,ECB模式的实例
# 截断函数,去除填充的字符
self.unpad = lambda date: date[0:-ord(date[-1])]
def pad(self, text):
"""
#填充函数,使被加密数据的字节码长度是block_size的整数倍
"""
count = len(text.encode('utf-8'))
add = self.length - (count % self.length)
entext = text + (chr(add) * add)
return entext
def encrypt(self, encrData): # 加密函数
res = self.aes.encrypt(self.pad(encrData).encode("utf8"))
msg = str(base64.b64encode(res), encoding="utf8")
return msg
def decrypt(self, decrData): # 解密函数
res = base64.decodebytes(decrData.encode("utf8"))
# print(res)
msg = self.aes.decrypt(res).decode("utf8")
# print(msg)
return self.unpad(msg)
text = 'Password0313' # 待加密文本
key = '1234567890123456' # 密钥
eg = EncryptDate(key) # 这里密钥的长度必须是16的倍数
res = eg.encrypt(text) # 加密函数
print("加密res:",res)
res = eg.decrypt(res) # 解密函数
print("解密res",res)