import hashlib
def get_md5(username,password):
md5 = hashlib.md5(username.encode(‘utf-8‘)) # 加盐
md5.update(password.encode(‘utf-8‘))
return md5.hexdigest()
ret = get_md5(‘alex‘,‘3714‘)
print(ret)
原文:https://www.cnblogs.com/Collin-pxy/p/13034171.html