May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.SealedObject
A sealed object is a container for another object. The contained
object is serialized and then encrypted using a cipher. You can
construct a sealed object using any serializable object and a cipher
that is initialized for encryption. To decrypt the contained object,
call the getObject() method with a cipher that
is initialized for decryption.
public class javax.crypto.SealedObject
extends java.lang.Object
implements java.io.Serializable {
// Constructors
public SealedObject(Serializable, Cipher);
// Instance Methods
public final Object getObject(Cipher);
public final Object getObject(Key);
public final Object getObject(Key, String);
}
PublicKey, PrivateKey