io.trbl.bcpg.KeyFactoryFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-simple-jdk15on Show documentation
Show all versions of bcpg-simple-jdk15on Show documentation
A simple, lightweight wrapper around BouncyCastle's OpenPGP support.
The newest version!
package io.trbl.bcpg;
public class KeyFactoryFactory {
static {
if (!Boolean.getBoolean("skipCryptoWarning")) {
System.err.println();
System.err.println("(!) This software applies cryptographic methods without being verified");
System.err.println(" by security professionals. Please, be careful.");
System.err.println();
}
}
/**
* This method creates a new instance of a {@link KeyFactory}.
*/
public static KeyFactory newInstance() {
return new BcPGPKeyFactory();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy