摘要: # coding:utf-8 from Crypto.Cipher import AES import base64 def encrypt(iv, plaintext): if len(plaintext) % 16 != 0: print("plaintext length is invalid 阅读全文
posted @ 2020-10-28 23:09 LLeaves 阅读(436) 评论(0) 推荐(0) 编辑