in src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java [37:51]
static {
boolean ok = false;
Throwable thrown = null;
try {
final String libName = System.getProperty(Crypto.JNA_LIBRARY_NAME_PROPERTY, Crypto.JNA_LIBRARY_NAME_DEFAULT);
OpenSslJna.debug("Native.register('%s')", libName);
Native.register(libName);
ok = true;
} catch (final Exception | UnsatisfiedLinkError e) {
thrown = e;
} finally {
INIT_OK = ok;
INIT_ERROR = thrown;
}
}