2021年10月27日
摘要: ##用python实现XOR加密 #coding=utf-8 #md5算法 import hashlib h_md5 = hashlib.md5() x = input("请输入要加密的文字:") print( "Text:",x) data = x.encode('utf-8', errors=' 阅读全文
posted @ 2021-10-27 09:23 20211417黄琪凯 阅读(38) 评论(0) 推荐(0) 编辑