Uses of Interface
org.bouncycastle.bcpg.BCPGKey
-
Packages that use BCPGKey Package Description org.bouncycastle.bcpg Low level classes for dealing with OpenPGP objects.org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects. -
-
Uses of BCPGKey in org.bouncycastle.bcpg
Classes in org.bouncycastle.bcpg that implement BCPGKey Modifier and Type Class Description class
DSAPublicBCPGKey
base class for a DSA Public Key.class
DSASecretBCPGKey
base class for a DSA Secret Key.class
ECDHPublicBCPGKey
base class for an ECDH Public Key.class
ECDSAPublicBCPGKey
base class for an ECDSA Public Key.class
ECPublicBCPGKey
base class for an EC Public Key.class
ECSecretBCPGKey
base class for an EC Secret Key.class
EdDSAPublicBCPGKey
base class for an EdDSA Public Key.class
EdSecretBCPGKey
base class for an Edwards Curve Secret Key.class
ElGamalPublicBCPGKey
base class for an ElGamal Public Key.class
ElGamalSecretBCPGKey
base class for an ElGamal Secret Key.class
RSAPublicBCPGKey
base class for an RSA Public Key.class
RSASecretBCPGKey
base class for an RSA Secret (or Private) Key.Methods in org.bouncycastle.bcpg that return BCPGKey Modifier and Type Method Description BCPGKey
PublicKeyPacket. getKey()
Constructors in org.bouncycastle.bcpg with parameters of type BCPGKey Constructor Description PublicKeyPacket(int algorithm, Date time, BCPGKey key)
Construct version 4 public key packet.PublicSubkeyPacket(int algorithm, Date time, BCPGKey key)
Construct version 4 public key packet. -
Uses of BCPGKey in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return BCPGKey Modifier and Type Method Description BCPGKey
PGPPrivateKey. getPrivateKeyDataPacket()
Return the private key packet associated with this private key, if available.Constructors in org.bouncycastle.openpgp with parameters of type BCPGKey Constructor Description PGPPrivateKey(long keyID, PublicKeyPacket publicKeyPacket, BCPGKey privateKeyDataPacket)
Base constructor.
-