Changed module name from my_auth to myauth

Changed encryption algorithm to argon2
Added unit tests
This commit is contained in:
2025-10-19 23:17:38 +02:00
parent 7634631b90
commit 0138ac247a
37 changed files with 261 additions and 160 deletions

6
src/myauth/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from .factory import create_sqlite_auth_service, create_app_router_for_sqlite
__all__ = [
'create_sqlite_auth_service',
'create_app_router_for_sqlite',
]