34 lines
1.1 KiB
Python
Executable File
34 lines
1.1 KiB
Python
Executable File
from datetime import datetime, timedelta, timezone
|
|
from typing import Optional, Dict, Any
|
|
|
|
import bcrypt
|
|
from jose import jwt, JWTError
|
|
|
|
from app.core.config import settings
|
|
|
|
# --- JELSZÓ ---
|
|
def verify_password(plain_password: str, hashed_password: str) -> bool:
|
|
try:
|
|
if not hashed_password:
|
|
return False
|
|
return bcrypt.checkpw(
|
|
plain_password.encode("utf-8"),
|
|
hashed_password.encode("utf-8"),
|
|
)
|
|
except Exception:
|
|
return False
|
|
|
|
def get_password_hash(password: str) -> str:
|
|
salt = bcrypt.gensalt()
|
|
return bcrypt.hashpw(password.encode("utf-8"), salt).decode("utf-8")
|
|
|
|
# --- JWT ---
|
|
def create_access_token(data: Dict[str, Any], expires_delta: Optional[timedelta] = None) -> str:
|
|
to_encode = dict(data)
|
|
expire = datetime.now(timezone.utc) + (expires_delta or timedelta(minutes=settings.ACCESS_TOKEN_EXPIRE_MINUTES))
|
|
to_encode.update({"exp": expire})
|
|
return jwt.encode(to_encode, settings.SECRET_KEY, algorithm=settings.ALGORITHM)
|
|
|
|
def decode_token(token: str) -> Dict[str, Any]:
|
|
return jwt.decode(token, settings.SECRET_KEY, algorithms=[settings.ALGORITHM])
|