摘要: ``` import hashlib def encrypt_password(passwd): # h = hashlib.sha256(passwd.encode('utf8)) salt = "abcdeasd11234" h = hashlib.sha256() h.update(passw 阅读全文
posted @ 2023-09-07 11:19 弩哥++ 阅读(4) 评论(0) 推荐(0) 编辑