当前位置: 首页 > 工具软件 > hashlib++ > 使用案例 >

python内置模块【hashlib】

邢昊焜
2023-12-01

python内置模块【hashlib】

md5加密

import hashlib
def md5(origin,salt='wxy57516'):
    hash_object=hashlib.md5(salt.encode('utf-8'))
    hash_object.update(origin.encode('utf-8'))
    result=hash_object.hexdigest()
    return result
print(md5('王'))
 类似资料: