This commit is contained in:
2025-11-14 13:39:43 +08:00
commit 1b185ac23e
11 changed files with 1307 additions and 0 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()