feat: implement PBKDF2 algorithm with registry

This commit is contained in:
2025-11-13 13:13:15 +00:00
parent 5c4371f787
commit 95f4d7dafd
3 changed files with 90 additions and 0 deletions

View File

@@ -38,3 +38,7 @@ def get_algorithm(name: str) -> Algorithm:
def list_algorithms() -> list[str]:
"""Return list of registered algorithm identifiers."""
return sorted(_ALGORITHMS.keys())
# Import to auto-register algorithms
import pbkdf2_algorithm # noqa: E402, F401