摘要: import hashlib 思路: 比如说我要给百度网的host加密 host = ‘’www.baidu.com md5 = hashlib.md5() md5.update(host.encode('utf-8')) md5.hexdigest() print(res) 打印的结果: dab1 阅读全文
posted @ 2020-09-22 23:25 文刀六日 阅读(133) 评论(0) 推荐(0) 编辑