"""Authentication utilities""" import bcrypt def verify_password(plain_password: str, hashed_password: str) -> bool: """Verify a password against its hash""" try: return bcrypt.checkpw( plain_password.encode('utf-8'), hashed_password.encode('utf-8') ) except Exception as e: print(f"Password verification error: {e}") return False def get_password_hash(password: str) -> str: """Generate password hash""" try: salt = bcrypt.gensalt() return bcrypt.hashpw(password.encode('utf-8'), salt).decode('utf-8') except Exception as e: print(f"Password hashing error: {e}") raise