Package java.security

Class SignedObject

java.lang.Object
java.security.SignedObject
All Implemented Interfaces:
Serializable

public final class SignedObject
extends Object
implements Serializable
A SignedObject instance acts as a container for another object. The SignedObject contains the target in serialized form along with a digital signature of the serialized data.
See Also:
Serialized Form
  • Constructor Details

    • SignedObject

      public SignedObject​(Serializable object, PrivateKey signingKey, Signature signingEngine) throws IOException, InvalidKeyException, SignatureException
      Constructs a new instance of SignedObject with the target object, the private key and the engine to compute the signature. The given object is signed with the specified key and engine.
      Parameters:
      object - the object to bes signed.
      signingKey - the private key, used to sign the object.
      signingEngine - the engine that performs the signature generation.
      Throws:
      IOException - if a serialization error occurs.
      InvalidKeyException - if the private key is not valid.
      SignatureException - if signature generation failed.
  • Method Details

    • getObject

      public Object getObject() throws IOException, ClassNotFoundException
      Returns the encapsulated object. Each time this method is invoked, the encapsulated object is deserialized before it is returned.
      Returns:
      the encapsulated object.
      Throws:
      IOException - if deserialization failed.
      ClassNotFoundException - if the class of the encapsulated object can not be found.
    • getSignature

      public byte[] getSignature()
      Returns the signature data of the encapsulated serialized object.
      Returns:
      the signature data of the encapsulated serialized object.
    • getAlgorithm

      public String getAlgorithm()
      Returns the name of the algorithm of this SignedObject.
      Returns:
      the name of the algorithm of this SignedObject.
    • verify

      public boolean verify​(PublicKey verificationKey, Signature verificationEngine) throws InvalidKeyException, SignatureException
      Indicates whether the contained signature for the encapsulated object is valid.
      Parameters:
      verificationKey - the public key to verify the signature.
      verificationEngine - the signature engine.
      Returns:
      true if the contained signature for the encapsulated object is valid, false otherwise.
      Throws:
      InvalidKeyException - if the public key is invalid.
      SignatureException - if signature verification failed.