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
RFC 7515, Section 2 states:
JWS Payload The sequence of octets to be secured -- a.k.a. the message. The payload can contain an arbitrary sequence of octets.
This is reinforced by the example shown in Appendix A4 using a payload of the string literal Payload.
Payload
As such, the JJWT API needs to be changed to reflect byte[] types and not String. This change would be backwards incompatible so it is slated for 1.0.
byte[]
String
The text was updated successfully, but these errors were encountered:
Merged with #279 , will be released in 0.12.0
0.12.0
Sorry, something went wrong.
No branches or pull requests
RFC 7515, Section 2 states:
This is reinforced by the example shown in Appendix A4 using a payload of the string literal
Payload
.As such, the JJWT API needs to be changed to reflect
byte[]
types and notString
. This change would be backwards incompatible so it is slated for 1.0.The text was updated successfully, but these errors were encountered: