Great project!
Currently, utils.jwt_code_handler hardcodes the HS256 algorithm, instead of using settings.JWT_ALGORITHM. Is this fixed on purpose or should it be configurable in settings?
A better default might be list(jwt.api_jwt.get_default_algorithms().keys())
Ref.
Great project!
Currently,
utils.jwt_code_handlerhardcodes theHS256algorithm, instead of usingsettings.JWT_ALGORITHM. Is this fixed on purpose or should it be configurable in settings?A better default might be
list(jwt.api_jwt.get_default_algorithms().keys())Ref.
django-jwt-auth/jwt_auth/utils.py
Line 48 in d9165f4