摘要: import base64 s = "暖星东" //加密 bs = base64.b64encode(s.encode("utf-8")) print(bs) //解密 s = str(base64.b64decode(bs),"utf-8") print(s) 阅读全文
posted @ 2022-09-19 09:34 LuckMeteor 阅读(18) 评论(0) 推荐(0) 编辑