python md5
def reg_pass(password):
md5 = hashlib.md5(b'jhcoj_mxs') #加盐
md5.update(password.encode(encoding='utf-8'))
md5.hexdigest()
return md5.hexdigest()
def reg_pass(password):
md5 = hashlib.md5(b'jhcoj_mxs') #加盐
md5.update(password.encode(encoding='utf-8'))
md5.hexdigest()
return md5.hexdigest()