Uses of Class
org.bouncycastle.openpgp.PGPSignature
-
Packages that use PGPSignature Package Description org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects. -
-
Uses of PGPSignature in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PGPSignature Modifier and Type Method Description PGPSignature
PGPSignatureGenerator. generate()
Return a signature object containing the current signature state.PGPSignature
PGPV3SignatureGenerator. generate()
Return a V3 signature object containing the current signature state.PGPSignature
PGPSignatureGenerator. generateCertification(String id, PGPPublicKey pubKey)
Generate a certification for the passed in id and key.PGPSignature
PGPSignatureGenerator. generateCertification(PGPPublicKey pubKey)
Generate a certification, such as a revocation, for the passed in key.PGPSignature
PGPSignatureGenerator. generateCertification(PGPPublicKey masterKey, PGPPublicKey pubKey)
Generate a certification for the passed in key against the passed in master key.PGPSignature
PGPSignatureGenerator. generateCertification(PGPUserAttributeSubpacketVector userAttributes, PGPPublicKey pubKey)
Generate a certification for the passed in userAttributesPGPSignature
PGPSignatureList. get(int index)
Methods in org.bouncycastle.openpgp that return types with arguments of type PGPSignature Modifier and Type Method Description Iterator<PGPSignature>
PGPPublicKey. getKeySignatures()
Return all signatures/certifications directly associated with this key (ie, not to a user id).Iterator<PGPSignature>
PGPPublicKey. getSignatures()
Return all signatures/certifications associated with this key.Iterator<PGPSignature>
PGPPublicKey. getSignaturesForID(byte[] rawID)
Return any signatures associated with the passed in id.Iterator<PGPSignature>
PGPPublicKey. getSignaturesForID(String id)
Return any signatures associated with the passed in id.Iterator<PGPSignature>
PGPPublicKey. getSignaturesForKeyID(long keyID)
Return any signatures associated with the passed in key identifier keyID.Iterator<PGPSignature>
PGPPublicKey. getSignaturesForUserAttribute(PGPUserAttributeSubpacketVector userAttributes)
Return an iterator of signatures associated with the passed in user attributes.Iterator<PGPSignature>
PGPPublicKey. getSignaturesOfType(int signatureType)
Return signatures of the passed in type that are on this key.Iterator<PGPSignature>
PGPSignatureList. iterator()
Support method for Iterable where available.Methods in org.bouncycastle.openpgp with parameters of type PGPSignature Modifier and Type Method Description static PGPPublicKey
PGPPublicKey. addCertification(PGPPublicKey key, byte[] rawID, PGPSignature certification)
Add a certification for an id to the given public key.static PGPPublicKey
PGPPublicKey. addCertification(PGPPublicKey key, String id, PGPSignature certification)
Add a certification for an id to the given public key.static PGPPublicKey
PGPPublicKey. addCertification(PGPPublicKey key, PGPSignature certification)
Add a revocation or some other key certification to a key.static PGPPublicKey
PGPPublicKey. addCertification(PGPPublicKey key, PGPUserAttributeSubpacketVector userAttributes, PGPSignature certification)
Add a certification for the given UserAttributeSubpackets to the given public key.void
PGPSignatureSubpacketGenerator. addEmbeddedSignature(boolean isCritical, PGPSignature pgpSignature)
Add an embedded signature packet.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, byte[] id, PGPSignature certification)
Remove a certification associated with a given id on a key.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, String id, PGPSignature certification)
Remove a certification associated with a given id on a key.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, PGPSignature certification)
Remove a certification from the key.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, PGPUserAttributeSubpacketVector userAttributes, PGPSignature certification)
Remove a certification associated with a given user attributes on a key.void
PGPSignatureSubpacketGenerator. setEmbeddedSignature(boolean isCritical, PGPSignature pgpSignature)
Deprecated.boolean
PGPOnePassSignature. verify(PGPSignature pgpSig)
Verify the calculated signature against the passed in PGPSignature.Constructors in org.bouncycastle.openpgp with parameters of type PGPSignature Constructor Description PGPSignatureList(PGPSignature sig)
PGPSignatureList(PGPSignature[] sigs)
-