python md5加密

import hashlib
def get_md5(password):
    #实例化对象
    md5 = hashlib.md5()
    #md5加密
    md5.update(password.encode('utf-8'))
    #输出密文
    return md5.hexdigest()

这个函数得到的是32位小写的MD5

留言

熱門文章