11 lines
250 B
Python
11 lines
250 B
Python
|
|
# 为了兼容性,导入简化的加密工具
|
||
|
|
from .simple_crypto import (
|
||
|
|
SimpleCrypto as AESCipher,
|
||
|
|
generate_hash,
|
||
|
|
verify_hash,
|
||
|
|
generate_token,
|
||
|
|
generate_uuid,
|
||
|
|
encrypt_password,
|
||
|
|
verify_password,
|
||
|
|
generate_signature
|
||
|
|
)
|