Uses of Class
org.bouncycastle.openpgp.PGPPublicKeyRing
-
Packages that use PGPPublicKeyRing Package Description org.bouncycastle.gpg.keybox Parsing classes for the GPG V2 KeyBox format.org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects.org.bouncycastle.openpgp.bc BC light weight based OpenPGP objects.org.bouncycastle.openpgp.jcajce JCA/JCE provider based OpenPGP objects. -
-
Uses of PGPPublicKeyRing in org.bouncycastle.gpg.keybox
Methods in org.bouncycastle.gpg.keybox that return PGPPublicKeyRing Modifier and Type Method Description PGPPublicKeyRing
PublicKeyRingBlob. getPGPPublicKeyRing()
Return the gpg public key ring from the key box blob. -
Uses of PGPPublicKeyRing in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PGPPublicKeyRing Modifier and Type Method Description PGPPublicKeyRing
PGPKeyRingGenerator. generatePublicKeyRing()
Return the public key ring that corresponds to the secret key ring.PGPPublicKeyRing
PGPPublicKeyRingCollection. getPublicKeyRing(byte[] fingerprint)
Return the PGP public key associated with the given key fingerprint.PGPPublicKeyRing
PGPPublicKeyRingCollection. getPublicKeyRing(long keyID)
Return the public key ring which contains the key referred to by keyID.static PGPPublicKeyRing
PGPPublicKeyRing. insertPublicKey(PGPPublicKeyRing pubRing, PGPPublicKey pubKey)
Returns a new key ring with the public key passed in either added or replacing an existing one.static PGPPublicKeyRing
PGPPublicKeyRing. removePublicKey(PGPPublicKeyRing pubRing, PGPPublicKey pubKey)
Returns a new key ring with the public key passed in removed from the key ring.Methods in org.bouncycastle.openpgp that return types with arguments of type PGPPublicKeyRing Modifier and Type Method Description Iterator<PGPPublicKeyRing>
PGPPublicKeyRingCollection. getKeyRings()
return the public key rings making up this collection.Iterator<PGPPublicKeyRing>
PGPPublicKeyRingCollection. getKeyRings(String userID)
Return an iterator of the key rings associated with the passed in userID.Iterator<PGPPublicKeyRing>
PGPPublicKeyRingCollection. getKeyRings(String userID, boolean matchPartial)
Return an iterator of the key rings associated with the passed in userID.Iterator<PGPPublicKeyRing>
PGPPublicKeyRingCollection. getKeyRings(String userID, boolean matchPartial, boolean ignoreCase)
Return an iterator of the key rings associated with the passed in userID.Iterator<PGPPublicKeyRing>
PGPPublicKeyRingCollection. iterator()
Support method for Iterable where available.Methods in org.bouncycastle.openpgp with parameters of type PGPPublicKeyRing Modifier and Type Method Description static PGPPublicKeyRingCollection
PGPPublicKeyRingCollection. addPublicKeyRing(PGPPublicKeyRingCollection ringCollection, PGPPublicKeyRing publicKeyRing)
Return a new collection object containing the contents of the passed in collection and the passed in public key ring.static PGPPublicKeyRing
PGPPublicKeyRing. insertPublicKey(PGPPublicKeyRing pubRing, PGPPublicKey pubKey)
Returns a new key ring with the public key passed in either added or replacing an existing one.static PGPPublicKeyRing
PGPPublicKeyRing. removePublicKey(PGPPublicKeyRing pubRing, PGPPublicKey pubKey)
Returns a new key ring with the public key passed in removed from the key ring.static PGPPublicKeyRingCollection
PGPPublicKeyRingCollection. removePublicKeyRing(PGPPublicKeyRingCollection ringCollection, PGPPublicKeyRing publicKeyRing)
Return a new collection object containing the contents of this collection with the passed in public key ring removed.static PGPSecretKeyRing
PGPSecretKeyRing. replacePublicKeys(PGPSecretKeyRing secretRing, PGPPublicKeyRing publicRing)
Replace the public key set on the secret ring with the corresponding key off the public ring.Constructor parameters in org.bouncycastle.openpgp with type arguments of type PGPPublicKeyRing Constructor Description PGPPublicKeyRingCollection(Collection<PGPPublicKeyRing> collection)
-
Uses of PGPPublicKeyRing in org.bouncycastle.openpgp.bc
Subclasses of PGPPublicKeyRing in org.bouncycastle.openpgp.bc Modifier and Type Class Description class
BcPGPPublicKeyRing
-
Uses of PGPPublicKeyRing in org.bouncycastle.openpgp.jcajce
Subclasses of PGPPublicKeyRing in org.bouncycastle.openpgp.jcajce Modifier and Type Class Description class
JcaPGPPublicKeyRing
-