Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.security.SignatureException

Uses of SignatureException in java.security
 

Methods in java.security that throw SignatureException
protected  void DummySignature.engineUpdate(byte b)
           
protected  void DummySignature.engineUpdate(byte[] b, int off, int len)
           
protected  byte[] DummySignature.engineSign()
           
protected  boolean DummySignature.engineVerify(byte[] sigBytes)
           
protected abstract  void SignatureSpi.engineUpdate(byte b)
          Updates the data to be signed or verified with the specified byte.
protected abstract  void SignatureSpi.engineUpdate(byte[] b, int off, int len)
          Updates the data to be signed or verified with the specified bytes.
protected abstract  byte[] SignatureSpi.engineSign()
          Returns the signature bytes of all the data fed to this instance.
protected  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.
protected abstract  boolean SignatureSpi.engineVerify(byte[] sigBytes)
          Verifies a designated signature.
protected  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[] Signature.sign()
          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.
 boolean Signature.verify(byte[] signature)
          Verifies a designated signature.
 boolean Signature.verify(byte[] signature, int offset, int length)
          Verifies a designated signature.
 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.
 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.
 

Constructors in java.security that throw SignatureException
SignedObject(java.io.Serializable object, PrivateKey signingKey, Signature signingEngine)
          Constructs a new instance of SignedObject from a java.io.Serializable object.