公告板
版本库
filestore
活动
搜索
登录
main
/
gp_trade_low_suction
交易低吸
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
‘功能完善
Administrator
4 天以前
62c99e398d9b05a30fc80f29a0048b95bafa77d7
[gp_trade_low_suction.git]
/
utils
/
crypt_util.py
1
2
3
4
5
6
7
import hashlib
def md5_encrypt(value):
md5 = hashlib.md5()
md5.update(value.encode('utf-8'))
return md5.hexdigest()