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
If we have a jwt token, with exp claim value as
"exp": 1.733162101e+26,
the library fails to decode the token. We get a JWTDecodeException with error "The claim 'exp' contained a non-numeric date value."
According the RFC on JWT(https://datatracker.ietf.org/doc/html/rfc7519#section-2), a NumericDate should adhere to IEEE Std 1003, according to which scientific notation representation is valid.
No response
4.4.0
17
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
Description
If we have a jwt token, with exp claim value as
the library fails to decode the token. We get a JWTDecodeException with error "The claim 'exp' contained a non-numeric date value."
According the RFC on JWT(https://datatracker.ietf.org/doc/html/rfc7519#section-2), a NumericDate should adhere to IEEE Std 1003, according to which scientific notation representation is valid.
Reproduction
Additional context
No response
java-jwt version
4.4.0
Java version
17
The text was updated successfully, but these errors were encountered: