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
I'm curious how much time it takes to decode and verify a jwt as that'll impact my costs.
Also if there's any techniques for optimizing that?
The text was updated successfully, but these errors were encountered:
The time for verify() varies depending on the algorithm used, and decode() essentially performs two base64 decoding operations.
verify()
decode()
I haven't measured the times yet, but it would definitely be interesting to learn more.
Sorry, something went wrong.
Ok cool. I'll be doing some prototyping in the nearish future with open telemetry measuring things so I'll have some numbers
No branches or pull requests
I'm curious how much time it takes to decode and verify a jwt as that'll impact my costs.
Also if there's any techniques for optimizing that?
The text was updated successfully, but these errors were encountered: