![JAR search and dependency download from the Maven repository](/logo.png)
name.neuhalfen.projects.crypto.bouncycastle.openpgp.keys.generation.KeySpecBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bouncy-gpg Show documentation
Show all versions of bouncy-gpg Show documentation
Make using Bouncy Castle with OpenPGP fun again!
The newest version!
package name.neuhalfen.projects.crypto.bouncycastle.openpgp.keys.generation;
import static java.util.Objects.requireNonNull;
import name.neuhalfen.projects.crypto.bouncycastle.openpgp.keys.generation.type.KeyType;
@SuppressWarnings("PMD.ClassNamingConventions")
public final class KeySpecBuilder {
private KeySpecBuilder() {/* utility only */}
public static KeySpecBuilderInterface newSpec(KeyType type) {
requireNonNull(type, "type must not be null");
return new KeySpecBuilderImpl(type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy