doctorsong

文章分类 -  python小组件

md5加密组件
摘要:import hashlib def md5(data_string): salt="xxx" obj = hashlib.md5(salt.encode('utf-8')) obj.update(data_string.encode('utf-8')) return obj.hexdigest() 阅读全文

posted @ 2023-05-22 09:42 songyu666 阅读(14) 评论(0) 推荐(0)

导航