We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in the config, we have ALGORITHM = HS256 and VERIFYING_KEY is None because "If an HMAC algorithm has been specified by the ALGORITHM setting, the VERIFYING_KEY setting will be ignored"
ALGORITHM
HS256
VERIFYING_KEY
None
unexpectedly, after upgrading djangorestframework-simplejwt to v5.2.1 the exp claim is not anymore verified: expired tokens are happily accepted
exp
upon investigation, that's because of PR #605
I think this will suprise many people !
The text was updated successfully, but these errors were encountered:
It surprised me, not very nice. Will it be fixed in future versions?
Sorry, something went wrong.
Yes, this is a bad bug.
Andrew-Chen-Wang
No branches or pull requests
in the config, we have
ALGORITHM
=HS256
andVERIFYING_KEY
isNone
because "If an HMAC algorithm has been specified by the ALGORITHM setting, the VERIFYING_KEY setting will be ignored"unexpectedly, after upgrading djangorestframework-simplejwt to v5.2.1 the
exp
claim is not anymore verified: expired tokens are happily acceptedupon investigation, that's because of PR #605
I think this will suprise many people !
The text was updated successfully, but these errors were encountered: