modules/jdktools/src/main/java/org/apache/harmony/tools/keytool/Command.java [21:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public enum Command {
    // show help message
    HELP,
    // generate a key pair or a secret key
    GENKEY,
    // generate a self-signed certificate using
    // an existing key pair
    SELFCERT,
    // import a trusted certificate or a CSR reply
    IMPORT,
    // export a certificate
    EXPORT,
    // change store password
    STOREPASSWD,
    // change key password
    KEYPASSWD,
    // generate a certificate signing request (CSR)
    CERTREQ,
    // check a CRL
    CHECK,
    // convert keystore to another format
    CONVERT,
    // verify a certificate chain
    VERIFY,
    // copy a key entry into a newly created one
    KEYCLONE,
    // print out the store contents
    LIST,
    // print out a certificate which is not in keystore yet
    PRINTCERT,
    // remove an entry from the store
    DELETE
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/jretools/src/main/java/org/apache/harmony/jretools/keytool/Command.java [21:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public enum Command {
    // show help message
    HELP,
    // generate a key pair or a secret key
    GENKEY,
    // generate a self-signed certificate using
    // an existing key pair
    SELFCERT,
    // import a trusted certificate or a CSR reply
    IMPORT,
    // export a certificate
    EXPORT,
    // change store password
    STOREPASSWD,
    // change key password
    KEYPASSWD,
    // generate a certificate signing request (CSR)
    CERTREQ,
    // check a CRL
    CHECK,
    // convert keystore to another format
    CONVERT,
    // verify a certificate chain
    VERIFY,
    // copy a key entry into a newly created one
    KEYCLONE,
    // print out the store contents
    LIST,
    // print out a certificate which is not in keystore yet
    PRINTCERT,
    // remove an entry from the store
    DELETE
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



