-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
JWE support #279
Merged
Merged
JWE support #279
Conversation
This file contains 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
is the JWE support added yet? or will it be in future release |
azagniotov
reviewed
Jul 7, 2018
src/main/java/io/jsonwebtoken/impl/crypto/AbstractAesEncryptionAlgorithm.java
Outdated
Show resolved
Hide resolved
a2c3a69
to
019a3ed
Compare
b9db369
to
ec29906
Compare
bb1a288
to
c60d53e
Compare
8050d72
to
2045ffa
Compare
0a36685
to
3703a45
Compare
743dc50
to
3eb7389
Compare
6766ab4
to
bd01e84
Compare
- Added JWE AeadAlgorithm and KeyAlgorithm and supporting interfaces/implementations, and refactored SignatureAlgorithm to be an interface instead of an enum to enable custom algorithms - NoneSignatureAlgorithm cleanup. Added UnsupportedKeyExceptionTest. - Added JWK support!
…ved the previous SignatureAlgorithm implementation concepts (Provider/Signer/Validator implementations). Implementations are now interface-driven and fully pluggable.
… class tests to impl module to avoid mocking static calls due to bridge/reflection logic.
- JavaDoc update
- Fixed erroneous README.md method name reference - ensured DefaultJwkContext#getName() supports Octet keys as well.
…fc8037) test vectors in the Appendix
…ocumentation and code example showing this.
…ocumentation and code example showing this.
…mpared to other PrivateJwk interfaces)
… is now Jwts.header
Hello ! That's a great job ! |
@selliera not quiet yet, but we don't like things to be in the main branch long before we release them, as documentation doesn't match the currently-available release. There are 2 things remaining:
|
This was referenced Aug 11, 2023
Closed
Closed
This was referenced Sep 16, 2023
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.
This does not yet support JWKs. That'll be next.