We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941d7ed commit b88c206Copy full SHA for b88c206
1 file changed
src/main/java/org/jruby/ext/openssl/SecurityHelper.java
@@ -182,7 +182,9 @@ private static Provider newBouncyCastleProvider() {
182
try {
183
return (Provider) Class.forName(BC_PROVIDER_CLASS).newInstance();
184
}
185
- catch (Throwable ignored) { /* no bouncy castle available */ }
+ catch (Throwable ignored) {
186
+ OpenSSL.debug("can not instantiate bouncy-castle provider:", ignored);
187
+ }
188
return null;
189
190
0 commit comments