This is an automated email from the ASF dual-hosted git repository.
dblevins pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tomee.git
from 28e9a390cd TOMEE-4001 - Upgrade Tomcat to 10.0.23
new 9f1f46b61e Tests for public key resolution
new b682e9c48f Parsing for private decrypt keys
new ab6e17dc8f TOMEE-3948 Decryption of JWTs using RSA-OAEP and A256GCM
algorithms
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../microprofile/jwt/JsonWebTokenValidator.java | 6 +-
.../apache/tomee/microprofile/jwt/MPJWTFilter.java | 36 ++++-
.../jwt/config/JWTAuthConfiguration.java | 40 ++++--
.../jwt/config/JWTAuthConfigurationProperties.java | 10 +-
.../{PublicKeyResolver.java => KeyResolver.java} | 40 ++++--
.../tomee/microprofile/jwt/CurveAsserts.java | 52 +++++++
.../apache/tomee/microprofile/jwt/KeyAsserts.java | 54 ++++++++
.../microprofile/jwt/config/KeyResolverTest.java | 153 +++++++++++++++++++++
8 files changed, 358 insertions(+), 33 deletions(-)
rename
mp-jwt/src/main/java/org/apache/tomee/microprofile/jwt/config/{PublicKeyResolver.java
=> KeyResolver.java} (79%)
create mode 100644
mp-jwt/src/test/java/org/apache/tomee/microprofile/jwt/CurveAsserts.java
create mode 100644
mp-jwt/src/test/java/org/apache/tomee/microprofile/jwt/KeyAsserts.java
create mode 100644
mp-jwt/src/test/java/org/apache/tomee/microprofile/jwt/config/KeyResolverTest.java