Files
2019-10-07 07:50:19 +02:00

14 lines
390 B
Python

from typing import Tuple
from passlib.context import CryptContext
pwd_context = CryptContext(schemes=['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)