Files

11 lines
250 B
Python
Raw Permalink Normal View History

2026-03-25 15:24:22 +08:00
# 为了兼容性,导入简化的加密工具
from .simple_crypto import (
SimpleCrypto as AESCipher,
generate_hash,
verify_hash,
generate_token,
generate_uuid,
encrypt_password,
verify_password,
generate_signature
)