Crypto.AES 报错 | TypeError: Object type <class 'str'> cannot be passed to C code
摘要:1 源代码: def decrypt(self, enc): """ Requires hex encoded param to decrypt """ enc = a2b_hex(enc) iv = enc[:16] enc = enc[16:] cipher = AES.new(self.key
阅读全文
posted @ 2021-04-20 11:21