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
ECDH-ES+*
https://github.com/smallrye/smallrye-jwt/blob/main/implementation/common/src/main/java/io/smallrye/jwt/algorithm/KeyEncryptionAlgorithm.java#L12C21-L12C29
has a typo in ECDH-ES+128KW and ECDH-ES+192KW in both cases, A is missing, correct is ECDH-ES+A128KW and ECDH-ES+A192KW.
ECDH-ES+128KW
ECDH-ES+192KW
A
ECDH-ES+A128KW
ECDH-ES+A192KW
ECDH-ES+A256KW enum is correct, using this family of elliptic curve algorithms for the encryption is rare compared to RSA-OAEP-* but ECDH-ES+A256KW is actually tested in https://github.com/smallrye/smallrye-jwt/blob/main/implementation/jwt-build/src/test/java/io/smallrye/jwt/build/JwtEncryptTest.java#L263
ECDH-ES+A256KW
RSA-OAEP-*
so it is a minor issue but needs to be fixed
The text was updated successfully, but these errors were encountered:
Fix typos in KeyEncryptionAlgorithm ECDH-ES+* enums (smallrye#737)
7cc8c83
Fix typos in KeyEncryptionAlgorithm ECDH-ES+* enums (#737) (#742)
04c4b35
Resolved by #742
Sorry, something went wrong.
No branches or pull requests
https://github.com/smallrye/smallrye-jwt/blob/main/implementation/common/src/main/java/io/smallrye/jwt/algorithm/KeyEncryptionAlgorithm.java#L12C21-L12C29
has a typo in
ECDH-ES+128KW
andECDH-ES+192KW
in both cases,A
is missing, correct isECDH-ES+A128KW
andECDH-ES+A192KW
.ECDH-ES+A256KW
enum is correct, using this family of elliptic curve algorithms for the encryption is rare compared toRSA-OAEP-*
butECDH-ES+A256KW
is actually tested in https://github.com/smallrye/smallrye-jwt/blob/main/implementation/jwt-build/src/test/java/io/smallrye/jwt/build/JwtEncryptTest.java#L263so it is a minor issue but needs to be fixed
The text was updated successfully, but these errors were encountered: