Class java.security.Key (1.1)


public abstract class Key extends Object implements Serializable {
  // Public Constructors
    public Key(byte[ ] encodedKey, String format);
    public Key(byte[ ] encodedKey, String format, String algorithm);
  // Protected Constructor
    protected Key( );  // Empty
  // Public Instance Methods
    public final boolean equals(Object obj);  // Overrides Object.equals( )
    public final String getAlgorithm( );
    public final String getFormat( );
  // Protected Instance Methods
    protected byte[ ] getEncoded( ) throws InvalidKeyException;
    protected final void initialize(byte[ ] encodedKey, String format, String algorithm);
}