公告板
版本库
filestore
活动
搜索
登录
main
/
gp_trade_simulation
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
添加回调
Administrator
2024-12-30
0ff5b4417b015c73566f73ac0ebf675c5ca862bf
[gp_trade_simulation.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()