Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

15 lignes
411 B

  1. # Hashing functions for passwords
  2. from passlib.context import CryptContext
  3. pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
  4. class Hasher:
  5. @staticmethod
  6. def verify_password(plain_password, hashed_password):
  7. return pwd_context.verify(plain_password, hashed_password)
  8. @staticmethod
  9. def get_password_hash(plain_password):
  10. return pwd_context.hash(plain_password)