from Crypto.Cipher import AES import base64 class PrpCrypt(object): def __init__(self, key): self.key = bytes.fromhex(key) self.mode = AES.
確定! 回上一頁