摘要: 字符串加密 ``` import base64 class StrEncrypt: """字符串加密""" def __init__(self): self._key = {'a', 'c', 'd', 'f', 'h', 'j', 'm', 'z'} self._un_key = {'~', '! 阅读全文
posted @ 2023-08-14 09:55 一枚码农 阅读(25) 评论(0) 推荐(0) 编辑