[java-idp-oidc] branch main updated: JCOMOIDC-64 - Support for the PS-* signature algorithms
Henri Mikkonen
henri.mikkonen at iki.fi
Tue Feb 21 07:49:25 UTC 2023
This is an automated email from the git hooks/post-receive script.
hjmikkon pushed a commit to branch main
in repository java-idp-oidc.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=057768f065b96fce919c7abd5ba6bfb1030c119c
The following commit(s) were added to refs/heads/main by this push:
new 057768f0 JCOMOIDC-64 - Support for the PS-* signature algorithms
057768f0 is described below
commit 057768f065b96fce919c7abd5ba6bfb1030c119c
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Tue Feb 21 09:47:21 2023 +0200
JCOMOIDC-64 - Support for the PS-* signature algorithms
https://shibboleth.atlassian.net/browse/JCOMOIDC-64
Add PS256, PS384 and PS512 to the list of supported JWS algorithms.
They were included in the default set of relying-party/postconfig.xml in the
java-idp-plugin-oidc-config module.
---
.../idp/plugin/oidc/op/profile/flow/ConfigurationFlowTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/ConfigurationFlowTest.java b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/ConfigurationFlowTest.java
index 1d3a75d5..372e924e 100644
--- a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/ConfigurationFlowTest.java
+++ b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/ConfigurationFlowTest.java
@@ -69,7 +69,7 @@ public class ConfigurationFlowTest extends AbstractOidcFlowTest {
final List<String> jweEncs = Arrays.asList("A128CBC-HS256", "A192CBC-HS384", "A256CBC-HS512", "A128GCM",
"A192GCM", "A256GCM");
final List<String> jwsAlgs = Arrays.asList("RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "HS256",
- "HS384", "HS512");
+ "HS384", "HS512", "PS256", "PS384", "PS512");
Assert.assertNotNull(metadata.getIDTokenJWEAlgs());
Assert.assertTrue(containsAll(metadata.getIDTokenJWEAlgs(), jweAlgs));
Assert.assertNotNull(metadata.getIDTokenJWEAlgs());
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list