KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > SignedObject

java.security
Class SignedObject

java.lang.Object
  extended by java.security.SignedObject
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code, Signature

public String getAlgorithm()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object getObject()
                 throws IOException,
                        ClassNotFoundException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public byte[] getSignature()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SignedObject(Serializable object,
                    PrivateKey signingKey,
                    Signature signingEngine)
             throws IOException,
                    InvalidKeyException,
                    SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean verify(PublicKey verificationKey,
                      Signature verificationEngine)
               throws InvalidKeyException,
                      SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags