dev #11

Merged
k1nq merged 76 commits from dev into master 2025-11-30 04:48:35 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 994b400221 - Show all commits

View File

@ -14,7 +14,7 @@ class PasswordHasher:
"""Wraps passlib context to hash and verify secrets."""
def __init__(self) -> None:
self._context = CryptContext(schemes=["bcrypt"], deprecated="auto")
self._context = CryptContext(schemes=["pbkdf2_sha256"], deprecated="auto")
def hash(self, password: str) -> str:
return self._context.hash(password)