Kamixitong/app/utils/crypto.py

11 lines
250 B
Python
Raw Normal View History

2025-11-11 21:39:12 +08:00
# 为了兼容性,导入简化的加密工具
from .simple_crypto import (
SimpleCrypto as AESCipher,
generate_hash,
verify_hash,
generate_token,
generate_uuid,
encrypt_password,
verify_password,
generate_signature
)