Do not raise error when verifying bad HMAC signature#563
Conversation
Member
|
The change looks great. But the plan for the next major version is to drop the RbNaCl for HMAC signatures. Is there any reason for you using it or is it just in use because of the behaviour of the gem currently replaces the hmac algorithm handling with RbNaCl if the rbnacl gem is available? |
Contributor
Author
Yes, this is the reason |
Member
|
Ok that is good to hear, think the behaviour is a bit strange currently. Until 3.x lets fix the problem like this first. Could you be so kind and create a changelog entry for this PR? |
Contributor
Author
|
Great, thank you. I'll create a changelog entry for it. |
anakinj
approved these changes
Jun 9, 2023
Member
|
Thank you for the effort of fixing this |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently, if user inputs token with incorrect signature (example: a part of signature is missing because it was truncated), an error is raised. It can be reproduced using the code below:
It would be great if
Signature verification failed (JWT::VerificationError)is raised in this case