AI-News/backend/app/services/security.py
2025-12-04 10:04:21 +08:00

17 lines
411 B
Python

import bcrypt
from passlib.context import CryptContext
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
def generate_salt() -> str:
return bcrypt.gensalt().decode()
def verify_password(plain_password: str, hashed_password: str) -> bool:
return pwd_context.verify(plain_password, hashed_password)
def get_password_hash(password: str) -> str:
return pwd_context.hash(password)