Uses of Class
org.bouncycastle.openpgp.PGPSignatureSubpacketVector
-
Packages that use PGPSignatureSubpacketVector Package Description org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects. -
-
Uses of PGPSignatureSubpacketVector in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PGPSignatureSubpacketVector Modifier and Type Method Description PGPSignatureSubpacketVector
PGPSignatureSubpacketGenerator. generate()
PGPSignatureSubpacketVector
PGPSignature. getHashedSubPackets()
PGPSignatureSubpacketVector
PGPSignature. getUnhashedSubPackets()
Methods in org.bouncycastle.openpgp with parameters of type PGPSignatureSubpacketVector Modifier and Type Method Description 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.void
PGPSignatureGenerator. setHashedSubpackets(PGPSignatureSubpacketVector hashedPcks)
void
PGPSignatureGenerator. setUnhashedSubpackets(PGPSignatureSubpacketVector unhashedPcks)
Constructors in org.bouncycastle.openpgp with parameters of type PGPSignatureSubpacketVector 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, 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.PGPSignatureSubpacketGenerator(PGPSignatureSubpacketVector sigSubV)
Constructor for pre-initialising the generator from an existing one.
-