[java-identity-provider] 02/03: IDP-1595 Plugin Handling improvements

Rod Widdowson rdw at steadingsoftware.com
Wed Sep 30 12:00:10 UTC 2020


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

rdw 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=4acad243c0b185121d9b2d59171700624c549c3e

commit 4acad243c0b185121d9b2d59171700624c549c3e
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Sep 30 12:00:15 2020 +0100

    IDP-1595 Plugin Handling improvements
    
    https://issues.shibboleth.net/jira/browse/IDP-1595
    
    Upper case fingerprint.
---
 .../main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
index 965724cee..1d63b0b85 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
@@ -212,7 +212,7 @@ import net.shibboleth.utilities.java.support.component.ComponentSupport;
             final StringBuilder builder = new StringBuilder("Signature:\t").
                     append(sigForCert.toString()).
                     append("\nFingerPrint:\t").
-                    append(new String(Hex.encode(cert.getFingerprint())));
+                    append((new String(Hex.encode(cert.getFingerprint()))).toUpperCase());
             final Iterator<String> namesIterator = cert.getUserIDs();
             while (namesIterator.hasNext()) {
                 builder.append("\nUsername:\t").append(namesIterator.next());

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


More information about the commits mailing list