[java-identity-provider] branch main updated: Add SimpleSign response validator bean for SP.

Scott Cantor cantor.2 at osu.edu
Wed Apr 2 15:13:14 UTC 2025


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=e45902f8b5a2eb09692d69feb40c7ed8a3711512

The following commit(s) were added to refs/heads/main by this push:
     new e45902f8b Add SimpleSign response validator bean for SP.
e45902f8b is described below

commit e45902f8b5a2eb09692d69feb40c7ed8a3711512
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Apr 2 11:13:11 2025 -0400

    Add SimpleSign response validator bean for SP.
---
 .../shibboleth/idp/conf/saml-binding-config.xml    | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/saml-binding-config.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/saml-binding-config.xml
index 3500b7402..54fbba717 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/saml-binding-config.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/saml-binding-config.xml
@@ -289,6 +289,34 @@
         </property>
     </bean>
     
+    <bean id="shibboleth.HttpServletRequestValidator.BasicParams.SAML2.POSTSimpleSign.Response"
+          parent="shibboleth.HttpServletRequestValidator.BasicParams.SAML.Abstract">
+        <property name="allowedParameters">
+            <set>
+                <value>SAMLResponse</value>
+                <value>RelayState</value>
+                <value>SigAlg</value>
+                <value>Signature</value>
+                <value>KeyInfo</value>
+            </set>
+        </property>
+        <property name="requiredParameters">
+            <set>
+                <value>SAMLResponse</value>
+                <value>Signature</value>
+            </set>
+        </property>
+        <property name="uniqueParameters">
+            <set>
+                <value>SAMLResponse</value>
+                <value>RelayState</value>
+                <value>SigAlg</value>
+                <value>Signature</value>
+                <value>KeyInfo</value>
+            </set>
+        </property>
+    </bean>
+    
     <bean id="shibboleth.HttpServletRequestValidator.BasicParams.SAML2.POST"
           parent="shibboleth.HttpServletRequestValidator.BasicParams.SAML.Abstract">
         <property name="allowedParameters">

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list