摘要: aes之ecb模式的加密解密 from Crypto.Cipher import AES import base64 BLOCK_SIZE = 16 # Bytes pad = lambda s: s + (BLOCK_SIZE - len(s.encode()) % BLOCK_SIZE) * c 阅读全文
posted @ 2022-06-21 19:56 3ξ 阅读(802) 评论(0) 推荐(0) 编辑