The constants defined
by this enumerated
type represent the general types of cryptographic keys: public keys,
private keys, and secret keys.
public enum
KeyRep.Type {
// Enumerated Constants
SECRET ,
PUBLIC ,
PRIVATE ;
// Public Class Methods
public static KeyRep.Type
valueOf (String
name );
public static final KeyRep.Type[ ]
values ( );
}