Files
TJWaterServerBinary/app/crypto/__init__.py
T
jiang c7947a7481 feat(auth)!: migrate customer metadata auth
Remove local auth and user-management endpoints in favor of Keycloak-backed metadata users, project context, admin metadata APIs, and agent auth context.
2026-06-13 15:00:58 +08:00

13 lines
499 B
Python

"""
This module is reserved for future implementation of advanced cryptographic operations.
Current Fernet encryption helpers are implemented in `app.core.encryption`.
Login credentials are owned by Keycloak; this backend does not hash or store
local passwords.
Future expansion may include:
- Asymmetric encryption (RSA/ECC) for secure communication
- Key management and rotation services
- Integration with Hardware Security Modules (HSM)
- Digital signatures for data integrity verification
"""