10 lines
299 B
Python
10 lines
299 B
Python
from passlib.context import CryptContext
|
|
|
|
pwd_cxt = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
|
class Hash():
|
|
def bcrypt(password: str):
|
|
return pwd_cxt.hash(password)
|
|
|
|
def verify(plain_password, hashed_password):
|
|
return pwd_cxt.verify(plain_password,hashed_password) |