[java-idp-plugin-oidc-config] branch main updated: JCOMOIDC-67 - Improve support for RSA* and ECDH-ES* JWE algorithms
Henri Mikkonen
henri.mikkonen at iki.fi
Fri Mar 17 10:19:42 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-plugin-oidc-config.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-config.git;a=commit;h=4847fa297c8985f7a8d62590ae24fca911b3439a
The following commit(s) were added to refs/heads/main by this push:
new 4847fa2 JCOMOIDC-67 - Improve support for RSA* and ECDH-ES* JWE algorithms
4847fa2 is described below
commit 4847fa297c8985f7a8d62590ae24fca911b3439a
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri Mar 17 12:18:59 2023 +0200
JCOMOIDC-67 - Improve support for RSA* and ECDH-ES* JWE algorithms
https://shibboleth.atlassian.net/browse/JCOMOIDC-67
Added the following algorithm descriptors:
- RSA-OAEP-384
- RSA-OAEP-512
- ECDH-ES
- ECDH-ES+A128KW
- ECDH-ES+A192KW
- ECDH-ES+A256KW
---
.../net/shibboleth/idp/service/relying-party/postconfig.xml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/oidc-config-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml b/oidc-config-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
index f69fbd8..5f01425 100644
--- a/oidc-config-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
+++ b/oidc-config-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
@@ -191,6 +191,10 @@
static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_RSA_OAEP" />
<util:constant
static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_RSA_OAEP_256" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_RSA_OAEP_384" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_RSA_OAEP_512" />
<util:constant
static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_AES_128_KW" />
<util:constant
@@ -203,6 +207,14 @@
static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_AES_192_GCM_KW" />
<util:constant
static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_AES_256_GCM_KW" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_ECDH_ES" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_ECDH_ES_AES_128_KW" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_ECDH_ES_AES_192_KW" />
+ <util:constant
+ static-field="net.shibboleth.oidc.jwa.support.KeyManagementConstants.ALGO_ID_ALG_ECDH_ES_AES_256_KW" />
</list>
</property>
<property name="dataEncryptionAlgorithms">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list