Uses of Class
org.bouncycastle.openpgp.PGPKeyPair
-
Packages that use PGPKeyPair Package Description org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects.org.bouncycastle.openpgp.operator.bc BC lightweight operators for dealing with OpenPGP objects.org.bouncycastle.openpgp.operator.jcajce JCA/JCE based operators for dealing with OpenPGP objects. -
-
Uses of PGPKeyPair in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PGPKeyPair Modifier and Type Method Description PGPKeyPair
PGPSecretKey. extractKeyPair(PBESecretKeyDecryptor decryptorFactory)
Extract a PGPPrivate key from the SecretKey's encrypted contents.Methods in org.bouncycastle.openpgp with parameters of type PGPKeyPair Modifier and Type Method Description void
PGPKeyRingGenerator. addSubKey(PGPKeyPair keyPair)
Add a sub key to the key ring to be generated with default certification and inheriting the hashed/unhashed packets of the master key.void
PGPKeyRingGenerator. addSubKey(PGPKeyPair keyPair, PGPContentSignerBuilder bindingSignerBldr)
Add a sub key to the key ring to be generated with default certification and inheriting the hashed/unhashed packets of the master key.void
PGPKeyRingGenerator. addSubKey(PGPKeyPair keyPair, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks)
Add a subkey with specific hashed and unhashed packets associated with it and default certification.void
PGPKeyRingGenerator. addSubKey(PGPKeyPair keyPair, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks, PGPContentSignerBuilder bindingSignerBldr)
Add a subkey with specific hashed and unhashed packets associated with it and default certification.Constructors in org.bouncycastle.openpgp with parameters of type PGPKeyPair Constructor Description PGPKeyRingGenerator(int certificationLevel, PGPKeyPair masterKey, String id, PGPDigestCalculator checksumCalculator, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks, PGPContentSignerBuilder keySignerBuilder, PBESecretKeyEncryptor keyEncryptor)
Create a new key ring generator.PGPSecretKey(int certificationLevel, PGPKeyPair keyPair, String id, PGPDigestCalculator checksumCalculator, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks, PGPContentSignerBuilder certificationSignerBuilder, PBESecretKeyEncryptor keyEncryptor)
Construct a PGPSecretKey using the passed in private/public key pair and binding it to the passed in id using a generated certification of certificationLevel.PGPSecretKey(int certificationLevel, PGPKeyPair keyPair, String id, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks, PGPContentSignerBuilder certificationSignerBuilder, PBESecretKeyEncryptor keyEncryptor)
Construct a PGPSecretKey using the passed in private/public key pair and binding it to the passed in id using a generated certification of certificationLevel.The secret key checksum is calculated using the original non-digest based checksum.PGPSecretKey(PGPKeyPair masterKeyPair, PGPKeyPair keyPair, PGPDigestCalculator checksumCalculator, PGPContentSignerBuilder certificationSignerBuilder, PBESecretKeyEncryptor keyEncryptor)
Construct a PGPSecretKey sub-key using the passed in private/public key pair and binding it to the master key pair.PGPSecretKey(PGPKeyPair masterKeyPair, PGPKeyPair keyPair, PGPDigestCalculator checksumCalculator, PGPSignatureSubpacketVector hashedPcks, PGPSignatureSubpacketVector unhashedPcks, PGPContentSignerBuilder certificationSignerBuilder, PBESecretKeyEncryptor keyEncryptor)
Construct a PGPSecretKey sub-key using the passed in private/public key pair and binding it to the master key pair. -
Uses of PGPKeyPair in org.bouncycastle.openpgp.operator.bc
Subclasses of PGPKeyPair in org.bouncycastle.openpgp.operator.bc Modifier and Type Class Description class
BcPGPKeyPair
-
Uses of PGPKeyPair in org.bouncycastle.openpgp.operator.jcajce
Subclasses of PGPKeyPair in org.bouncycastle.openpgp.operator.jcajce Modifier and Type Class Description class
JcaPGPKeyPair
A PGP key pair class that is constructed from JCA/JCE key pairs.
-