Uses of Class
org.bouncycastle.openpgp.PGPUserAttributeSubpacketVector
-
Packages that use PGPUserAttributeSubpacketVector Package Description org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects. -
-
Uses of PGPUserAttributeSubpacketVector in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return PGPUserAttributeSubpacketVector Modifier and Type Method Description PGPUserAttributeSubpacketVector
PGPUserAttributeSubpacketVectorGenerator. generate()
Methods in org.bouncycastle.openpgp that return types with arguments of type PGPUserAttributeSubpacketVector Modifier and Type Method Description Iterator<PGPUserAttributeSubpacketVector>
PGPPublicKey. getUserAttributes()
Return any user attribute vectors associated with the key.Iterator<PGPUserAttributeSubpacketVector>
PGPSecretKey. getUserAttributes()
Return any user attribute vectors associated with the key.Methods in org.bouncycastle.openpgp with parameters of type PGPUserAttributeSubpacketVector Modifier and Type Method Description static PGPPublicKey
PGPPublicKey. addCertification(PGPPublicKey key, PGPUserAttributeSubpacketVector userAttributes, PGPSignature certification)
Add a certification for the given UserAttributeSubpackets to the given public key.PGPSignature
PGPSignatureGenerator. generateCertification(PGPUserAttributeSubpacketVector userAttributes, PGPPublicKey pubKey)
Generate a certification for the passed in userAttributesIterator<PGPSignature>
PGPPublicKey. getSignaturesForUserAttribute(PGPUserAttributeSubpacketVector userAttributes)
Return an iterator of signatures associated with the passed in user attributes.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, PGPUserAttributeSubpacketVector userAttributes)
Remove any certifications associated with a given user attribute subpacket on a key.static PGPPublicKey
PGPPublicKey. removeCertification(PGPPublicKey key, PGPUserAttributeSubpacketVector userAttributes, PGPSignature certification)
Remove a certification associated with a given user attributes on a key.boolean
PGPSignature. verifyCertification(PGPUserAttributeSubpacketVector userAttributes, PGPPublicKey key)
Verify the signature as certifying the passed in public key as associated with the passed in user attributes.
-