Uses of Class
org.bouncycastle.bcpg.PublicKeyPacket
-
Packages that use PublicKeyPacket Package Description org.bouncycastle.bcpg Low level classes for dealing with OpenPGP objects.org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects.org.bouncycastle.openpgp.operator Interfaces and abstract classes to provide the framework to support operations on the OpenPGP high level classes.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 PublicKeyPacket in org.bouncycastle.bcpg
Subclasses of PublicKeyPacket in org.bouncycastle.bcpg Modifier and Type Class Description class
PublicSubkeyPacket
basic packet for a PGP public keyMethods in org.bouncycastle.bcpg that return PublicKeyPacket Modifier and Type Method Description PublicKeyPacket
SecretKeyPacket. getPublicKeyPacket()
Constructors in org.bouncycastle.bcpg with parameters of type PublicKeyPacket Constructor Description SecretKeyPacket(PublicKeyPacket pubKeyPacket, int encAlgorithm, int s2kUsage, S2K s2k, byte[] iv, byte[] secKeyData)
SecretKeyPacket(PublicKeyPacket pubKeyPacket, int encAlgorithm, S2K s2k, byte[] iv, byte[] secKeyData)
SecretSubkeyPacket(PublicKeyPacket pubKeyPacket, int encAlgorithm, int s2kUsage, S2K s2k, byte[] iv, byte[] secKeyData)
SecretSubkeyPacket(PublicKeyPacket pubKeyPacket, int encAlgorithm, S2K s2k, byte[] iv, byte[] secKeyData)
-
Uses of PublicKeyPacket in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PublicKeyPacket Modifier and Type Method Description PublicKeyPacket
PGPPrivateKey. getPublicKeyPacket()
Return the public key packet associated with this private key, if available.PublicKeyPacket
PGPPublicKey. getPublicKeyPacket()
Constructors in org.bouncycastle.openpgp with parameters of type PublicKeyPacket Constructor Description PGPPrivateKey(long keyID, PublicKeyPacket publicKeyPacket, BCPGKey privateKeyDataPacket)
Base constructor.PGPPublicKey(PublicKeyPacket publicKeyPacket, KeyFingerPrintCalculator fingerPrintCalculator)
Create a PGP public key from a packet descriptor using the passed in fingerPrintCalculator to do calculate the fingerprint and keyID. -
Uses of PublicKeyPacket in org.bouncycastle.openpgp.operator
Methods in org.bouncycastle.openpgp.operator with parameters of type PublicKeyPacket Modifier and Type Method Description byte[]
KeyFingerPrintCalculator. calculateFingerprint(PublicKeyPacket publicPk)
static byte[]
RFC6637Utils. createUserKeyingMaterial(PublicKeyPacket pubKeyData, KeyFingerPrintCalculator fingerPrintCalculator)
static String
RFC6637Utils. getAgreementAlgorithm(PublicKeyPacket pubKeyData)
static String
RFC6637Utils. getXDHAlgorithm(PublicKeyPacket pubKeyData)
-
Uses of PublicKeyPacket in org.bouncycastle.openpgp.operator.bc
Methods in org.bouncycastle.openpgp.operator.bc with parameters of type PublicKeyPacket Modifier and Type Method Description byte[]
BcKeyFingerprintCalculator. calculateFingerprint(PublicKeyPacket publicPk)
-
Uses of PublicKeyPacket in org.bouncycastle.openpgp.operator.jcajce
Methods in org.bouncycastle.openpgp.operator.jcajce with parameters of type PublicKeyPacket Modifier and Type Method Description byte[]
JcaKeyFingerprintCalculator. calculateFingerprint(PublicKeyPacket publicPk)
-