2020年9月25日
摘要: 一、加密代码 import base64 import zlib from Crypto.Cipher import AES from Crypto import Random BLOCK_SIZE = 16 def pad(s): return s + ((BLOCK_SIZE - len(s) 阅读全文
posted @ 2020-09-25 19:04 lin-gooo 阅读(4482) 评论(0) 推荐(0) 编辑