公告板
版本库
filestore
活动
搜索
登录
main
/
gp_trade_low_suction
交易低吸
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
初始化导入
Administrator
2025-06-06
6df8d9ac75a041377c01c80e6e970e5c75ce7662
[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()