From 3adbea9c762b00dc23a8f4dc5fc8a996aa8b03c5 Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Sat, 25 Aug 2018 22:26:47 +0000
Subject: [PATCH] Better message on su3 certificate errors

---
 core/java/src/net/i2p/crypto/SU3File.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/java/src/net/i2p/crypto/SU3File.java b/core/java/src/net/i2p/crypto/SU3File.java
index c186fc2373..65b2ee542d 100644
--- a/core/java/src/net/i2p/crypto/SU3File.java
+++ b/core/java/src/net/i2p/crypto/SU3File.java
@@ -324,7 +324,7 @@ public class SU3File {
                 try {
                     _signerPubkey = ring.getKey(_signer, _contentType.getName(), _sigType);
                 } catch (GeneralSecurityException gse) {
-                    IOException ioe = new IOException("keystore error");
+                    IOException ioe = new IOException("Certificate error for " + _signer + ": " + gse);
                     ioe.initCause(gse);
                     throw ioe;
                 }
@@ -338,7 +338,7 @@ public class SU3File {
                         try {
                             _signerPubkey = ring.getKey(_signer, _contentType.getName(), _sigType);
                         } catch (GeneralSecurityException gse) {
-                            IOException ioe = new IOException("keystore error");
+                            IOException ioe = new IOException("Certificate error for " + _signer + ": " + gse);
                             ioe.initCause(gse);
                             throw ioe;
                         }
-- 
GitLab