Example usage for Java java.security SignedObject fields, constructors, methods, implement or subclass
The text is from its open source code.
SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine) Constructs a SignedObject from any Serializable object. |
Object | getObject() Retrieves the encapsulated object. |
boolean | verify(PublicKey verificationKey, Signature verificationEngine) Verifies that the signature in this SignedObject is the valid signature for the object stored inside, with the given verification key, using the designated verification engine. |