INNER CODE UNIT · Python

AuthConfig

IndominusByte/fastapi-jwt-auth · fastapi_jwt_auth/auth_config.py:6

class AuthConfig:
    _token = None
    _token_location = {'headers'}

    _secret_key = None
    _public_key = None
    _private_key = None
    _algorithm = "HS256"
    _decode_algorithms = None
    _decode_leeway = 0
    _encode_issuer = None
    _decode_issuer = None
    _decode_audience = None
    _denylist_enabled = False
    _denylist_token_checks = {'access','refresh'}
    _header_name = "Authorization"
    _header_type = "Bearer"
    _token_in_denylist_callback = None

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…