Team LiB
Previous Section Next Section

KeyRepjava.security

Java 5.0serializable

This class defines a serialized representation for Key implementations and is typically used only by security providers, not users of the java.security package.

Figure 14-22. java.security.KeyRep


public class KeyRep implements Serializable {
// Public Constructors
     public KeyRep(KeyRep.Type type, String algorithm, String format, 
        byte[ ] encoded);  
// Nested Types
     public enum Type; 
// Protected Instance Methods
     protected Object readResolve( ) throws java.io.ObjectStreamException;  
}

    Team LiB
    Previous Section Next Section