上传文件至 /

This commit is contained in:
2025-11-11 00:21:18 +08:00
parent c5a38d1486
commit 315c2f40a5
5 changed files with 529 additions and 2 deletions

8
hasher.py Normal file
View File

@@ -0,0 +1,8 @@
# 哈希服务
import hashlib
def get_md5(text):
return hashlib.md5(text.encode('utf-8')).hexdigest()
def hash(text):
return hashlib.md5(text.encode('utf-8')).hexdigest()