Uses of Class java.security.SignatureException

Uses in package java.security

Constructors which throw type java.security.SignatureException

SignedObject.SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine)
Constructs a new instance of SignedObject from a Serializable object.

Methods which throw type java.security.SignatureException

byte[]
Returns the signature bytes of all the data fed to this instance.
int
SignatureSpi.engineSign(byte[] outbuf, int offset, int len)
Generates signature bytes of all the data fed to this instance and stores the result in the designated array.
void
Updates the data to be signed or verified with the specified byte.
void
SignatureSpi.engineUpdate(byte[] b, int off, int len)
Updates the data to be signed or verified with the specified bytes.
boolean
SignatureSpi.engineVerify(byte[] sigBytes)
Verifies a designated signature.
boolean
SignatureSpi.engineVerify(byte[] sigBytes, int offset, int length)
Convenience method which calls the method with the same name and one argument after copying the designated bytes into a temporary byte array.
byte[]
Returns the signature bytes of all the data fed to this instance.
int
Signature.sign(byte[] outbuf, int offset, int len)
Generates signature bytes of all the data fed to this instance and stores it in the designated array.
void
Signature.update(byte b)
Updates the data to be signed or verified with the specified byte.
void
Signature.update(byte[] data)
Updates the data to be signed or verified with the specified bytes.
void
Signature.update(byte[] data, int off, int len)
Updates the data to be signed or verified with the specified bytes.
void
Update this signature with the Buffer.remaining() bytes of the input buffer.
boolean
Signature.verify(byte[] signature)
Verifies a designated signature.
boolean
Signature.verify(byte[] signature, int offset, int length)
Verifies a designated signature.
boolean
SignedObject.verify(PublicKey verificationKey, Signature verificationEngine)
Verifies the encapsulated digital signature by checking that it was generated by the owner of a designated public key.

Uses in package java.security.cert

Methods which throw type java.security.SignatureException

void
Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key.
void
Verifies that this CRL was properly signed with the PublicKey that corresponds to its private key.
void
Certificate.verify(PublicKey key, String sigProvider)
Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key and uses the signature engine provided by the provider.
void
X509CRL.verify(PublicKey key, String sigProvider)
Verifies that this CRL was properly signed with the PublicKey that corresponds to its private key and uses the signature engine provided by the provider.

Uses in package javax.security.cert

Methods which throw type java.security.SignatureException

void
Verifies the signature of this certificate.
void
Certificate.verify(PublicKey key, String sigProvider)
Verifies the signature of this certificate, using the specified security provider.