13 lines
375 B
Python
13 lines
375 B
Python
from passlib.context import CryptContext
|
|
import hashlib
|
|
|
|
pwd_context = CryptContext(schemes=["argon2"], deprecated="auto")
|
|
|
|
def hash_password(pwd: str) -> str:
|
|
return pwd_context.hash(pwd)
|
|
|
|
def verify_password(pwd: str, hash: str) -> bool:
|
|
return pwd_context.verify(pwd, hash)
|
|
|
|
def hash_token(token: str) -> str:
|
|
return hashlib.sha256(token.encode()).hexdigest()
|