mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-14 18:58:10 +08:00
21 lines
489 B
Python
21 lines
489 B
Python
from typing import Tuple
|
|
|
|
from passlib import pwd
|
|
from passlib.context import CryptContext
|
|
|
|
pwd_context = CryptContext(schemes=["argon2", "bcrypt"], deprecated="auto")
|
|
|
|
|
|
def verify_and_update_password(
|
|
plain_password: str, hashed_password: str
|
|
) -> Tuple[bool, str]:
|
|
return pwd_context.verify_and_update(plain_password, hashed_password)
|
|
|
|
|
|
def get_password_hash(password: str) -> str:
|
|
return pwd_context.hash(password)
|
|
|
|
|
|
def generate_password() -> str:
|
|
return pwd.genword()
|