Java org.bouncycastle.openpgp PGPSignature fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.openpgp PGPSignature fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.openpgp PGPSignature.

The text is from its open source code.

Field

Method

voidencode(OutputStream outStream)
DategetCreationTime()
Return the creation time of the signature.
byte[]getEncoded()
intgetHashAlgorithm()
Return the hash algorithm associated with this signature.
PGPSignatureSubpacketVectorgetHashedSubPackets()
intgetKeyAlgorithm()
Return the key algorithm associated with this signature.
longgetKeyID()
Return the id of the key that created the signature.
intgetSignatureType()
PGPSignatureSubpacketVectorgetUnhashedSubPackets()
intgetVersion()
Return the OpenPGP version number for this signature.
voidinit(PGPContentVerifierBuilderProvider verifierBuilderProvider, PGPPublicKey pubKey)
voidupdate(byte[] bytes, int off, int length)
voidupdate(byte b)
voidupdate(byte[] bytes)
booleanverify()
booleanverifyCertification(PGPUserAttributeSubpacketVector userAttributes, PGPPublicKey key)
Verify the signature as certifying the passed in public key as associated with the passed in user attributes.
booleanverifyCertification(String id, PGPPublicKey key)
Verify the signature as certifying the passed in public key as associated with the passed in id.
booleanverifyCertification(byte[] rawID, PGPPublicKey key)
Verify the signature as certifying the passed in public key as associated with the passed in rawID.
booleanverifyCertification(PGPPublicKey masterKey, PGPPublicKey pubKey)
Verify a certification for the passed in key against the passed in master key.
booleanverifyCertification(PGPPublicKey pubKey)
Verify a key certification, such as a revocation, for the passed in key.