摘要: 1 # 仿AES对明文进行加密 2 class Encrypt(object): 3 def __init__(self, raw_string): 4 self.raw_string = raw_string 5 def str_to_bin(self,raw_string): 6 bin_lis 阅读全文
posted @ 2022-04-24 17:41 猎奇会员 阅读(140) 评论(0) 推荐(0)