from fastapi.security import HTTPBearer from passlib.context import CryptContext auth_scheme = HTTPBearer(auto_error=True) pwd_context = CryptContext(schemes=["bcrypt"])