第一次提交

This commit is contained in:
2026-03-25 15:24:22 +08:00
commit 0f8ac68d4d
156 changed files with 42365 additions and 0 deletions

11
app/utils/crypto.py Normal file
View File

@@ -0,0 +1,11 @@
# 为了兼容性,导入简化的加密工具
from .simple_crypto import (
SimpleCrypto as AESCipher,
generate_hash,
verify_hash,
generate_token,
generate_uuid,
encrypt_password,
verify_password,
generate_signature
)