import base64
import json
import zlib
from Crypto.Cipher import AES
def decrypt(cipher_text):
# AES ECB 模式使用的密钥(16、24 或 32 字节)
key = 'cmmgfgehahweuuii' # 替换为您的密钥
# 创建 AES 密码对象,使用 ECB 模式
cipher = AES.new(key.encode(), AES.MODE_ECB)
# 解密数据
plain_text = cipher.decrypt(base64.b64decode(cipher_text))
# 使用zlib库解压缩数据
uncompressed_data = zlib.decompress(plain_text, zlib.MAX_WBITS | 16)
return uncompressed_data