[java-plugin-shibd-saml] branch main updated: Add missing private key file setter.

Codeberg noreply at shibboleth.net
Wed Jul 29 11:59:28 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-plugin-shibd-saml.

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd-saml/commit/27ef4fc6883979ed90aef231ebc2478da6140fd4

The following commit(s) were added to refs/heads/main by this push:
     new 27ef4fc  Add missing private key file setter.
27ef4fc is described below

commit 27ef4fc6883979ed90aef231ebc2478da6140fd4
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Wed Jul 29 07:59:17 2026 -0400

    Add missing private key file setter.
---
 .../src/main/java/net/shibboleth/sp/saml/conf/SAMLModule.java            | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sp-saml-conf-impl/src/main/java/net/shibboleth/sp/saml/conf/SAMLModule.java b/sp-saml-conf-impl/src/main/java/net/shibboleth/sp/saml/conf/SAMLModule.java
index 7a05cce..7b43d21 100644
--- a/sp-saml-conf-impl/src/main/java/net/shibboleth/sp/saml/conf/SAMLModule.java
+++ b/sp-saml-conf-impl/src/main/java/net/shibboleth/sp/saml/conf/SAMLModule.java
@@ -93,6 +93,7 @@ public final class SAMLModule extends PluginIdPModule {
      */
     private void generateKeyPair(@Nonnull final Path keyFile, @Nonnull final Path crtFile) throws ModuleException {
         final SelfSignedCertificateGenerator generator = new SelfSignedCertificateGenerator();
+        generator.setPrivateKeyFile(keyFile.toFile());
         generator.setCertificateFile(crtFile.toFile());
         generator.setKeySize(InstallerProperties.DEFAULT_KEY_SIZE);
         final String hostName = InstallerSupport.getBestHostName();

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


More information about the commits mailing list