| [Top] | [Contents] | [Index] | [ ? ] |
This file documents the Tools included in a standard distribution of the GNU Classpath project deliverables.
Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This document contains important information you need to know in order to use the tools included in the GNU Classpath project deliverables.
The Tools aim at providing a free replacement, similar in their behavior, to their counter-parts found in the Reference Implementation (RI) of the Java Software Development Kit (SDK).
| 1. Applet Tools | Work with applets | |
| 2. Security Tools | Work securely with Java applications | |
| 3. Other Tools | Other tools in classpath | |
| 4. I18N Issues | How to add support for non-English languages | |
--- The Detailed Node Listing --- Applet Tools | ||
|---|---|---|
1.1 The appletviewer Tool | Load applets | |
1.2 The gcjwebplugin Tool | Load applets in a web browser | |
Security Tools | ||
2.1 The jarsigner Tool | Sign and verify .JAR files | |
2.2 The keytool Tool | Manage private keys and public certificates | |
jarsigner Tool | ||
| 2.1.1 Common options | Options used when signing or verifying a file | |
| 2.1.2 Signing options | Options only used when signing a .JAR file | |
| 2.1.3 Verification options | Options only used when verifying a .JAR file | |
keytool Tool | ||
| 2.2.1 Getting help | How to get help with keytool commands | |
| 2.2.2 Common options | Options used in more than one command | |
| 2.2.3 X.500 Distinguished Names | X.500 Distinguished Names used in certificates | |
| 2.2.4 Add/Update commands | Commands for adding data to a Key Store | |
| 2.2.5 Export commands | Commands for exporting data from a Key Store | |
| 2.2.6 Display commands | Commands for displaying data in a Key Store | |
| 2.2.7 Management commands | Commands for managing a Key Store | |
Add/Update Commands | ||
| 2.2.4.1 The `-genkey' command | Generate private key and self-signed certificate | |
| 2.2.4.2 The `-import' command | Import certificates and certificate replies | |
| 2.2.4.3 The `-selfcert' command | Generate self-signed certificate | |
| 2.2.4.4 The `-cacert' command | Import a CA Trusted Certificate | |
| 2.2.4.5 The `-identitydb' command | Import JDK-1 style identities | |
Export Commands | ||
| 2.2.5.1 The `-certreq' command | Generate Certificate Signing Requests (CSR) | |
| 2.2.5.2 The `-export' command | Export a certificate in a Key Store | |
Display Commands | ||
| 2.2.6.1 The `-list' command | Display information about one or all Aliases | |
| 2.2.6.2 The `-printcert' command | Print a certificate or a certificate fingerprint | |
Management Commands | ||
| 2.2.7.1 The `-keyclone' command | Clone a Key Entry in a Key Store | |
| 2.2.7.2 The `-storepasswd' command | Change the password protecting a Key Store | |
| 2.2.7.3 The `-keypasswd' command | Change the password protecting a Key Entry | |
| 2.2.7.4 The `-delete' command | Remove an entry in a Key Store | |
Other Tools | ||
3.1 The jar Tool | Archive tool for Java archives | |
3.2 The javah Tool | A java header compiler | |
3.3 The gcjh Tool | A java header compiler (old version) | |
3.4 The native2ascii Tool | An encoding converter | |
3.5 The orbd object request broker daemon | An object request broker daemon | |
3.6 The serialver version command | A serial version command | |
3.7 The rmid RMI activation system daemon | RMI activation daemon | |
3.8 The rmiregistry Tool | Remote object registry | |
3.9 The tnameserv Tool | Naming service | |
I18N Issues | ||
| 4.1 Language-specific resources | Where resources are located | |
| 4.2 Message formats | How messages are internationalized | |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Two Applet Tools are available with GNU Classpath: appletviewer and gcjwebplugin.
To avoid conflicts with other implementations, the appletviewer executable is called "gappletviewer".
1.1 The appletviewer Tool | Load applets | |
1.2 The gcjwebplugin Tool | Load applets in a web browser |
If while using these tools you think you found a bug, then please report it at classpath-bugs.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
appletviewer Tool SYNOPSIS
appletviewer [OPTION]… URL…
appletviewer [OPTION]… `-code' CODE
appletviewer [OPTION]… `-plugin' INPUT,OUTPUT
DESCRIPTION
The appletviewer tool loads and runs an applet.
Use the first form to test applets specified by tag. The URL should
resolve to an HTML document from which the appletviewer will
extract applet tags. The APPLET, EMBED and OBJECT tags are supported.
If a given document contains multiple applet tags, all the applets
will be loaded, with each applet appearing in its own window.
Likewise, when multiple URLs are specified, each applet tag instance
is given its own window. If a given document contains no recognized
tags the appletviewer does nothing.
appletviewer http://www.gnu.org/software/classpath/ |
Use the second form to test an applet in development. This form allows applet tag attributes to be supplied on the command line. Only one applet may be specified using the `-code' option. The `-code' option overrides the URL form - any URLs specified will be ignored.
appletviewer -code Test.class -param datafile,data.txt |
gcjwebplugin uses the third form to communicate with the
appletviewer through named pipes.
URL OPTIONS
-debugThis option is not yet implemented but is provided for compatibility.
-encoding CHARSETUse this option to specify an alternate character encoding for the specified HTML page.
APPLET TAG OPTIONS
-code CODEUse the `-code' option to specify the value of the applet tag CODE attribute.
-codebase CODEBASEUse the `-codebase' option to specify the value of the applet tag CODEBASE attribute.
-archive ARCHIVEUse the `-archive' option to specify the value of the applet tag ARCHIVE attribute.
-width WIDTHUse the `-width' option to specify the value of the applet tag WIDTH attribute.
-height HEIGHTUse the `-height' option to specify the value of the applet tag HEIGHT attribute.
-param NAME,VALUEUse the `-param' option to specify values for the NAME and VALUE attributes of an applet PARAM tag.
PLUGIN OPTION
-plugin INPUT,OUTPUTgcjwebplugin uses the `-plugin' option to specify the
named pipe the appletviewer should use for receiving commands
(INPUT) and the one it should use for sending commands to
gcjwebplugin (OUTPUT).
DEBUGGING OPTION
-verboseUse the `-verbose' option to have the appletviewer print
debugging messages.
STANDARD OPTIONS
-helpUse the `-help' option to have the appletviewer print a
usage message, then exit.
-versionUse the `-version' option to have the appletviewer print
its version, then exit.
-JOPTIONUse the `-J' option to pass OPTION to the virtual machine that
will run the appletviewer. Unlike other options, there must
not be a space between the `-J' and OPTION.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
gcjwebplugin Tool gcjwebplugin is a plugin that adds applet support to web
browsers. Currently gcjwebplugin only supports Mozilla-based
browsers (e.g., Firefox, Galeon, Mozilla).
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Two Security Tools are available with GNU Classpath:
jarsigner and keytool.
To avoid conflicts with other implementations, the jarsigner
executable is called gjarsigner and the keytool executable is
called gkeytool.
2.1 The jarsigner Tool | Sign and verify .JAR files | |
2.2 The keytool Tool | Manage private keys and public certificates |
If while using these tools you think you found a bug, then please report it at classpath-bugs.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
jarsigner Tool The jarsigner tool is invoked from the command line, in one
of two forms, as follows:
jarsigner [OPTION]… FILE ALIAS jarsigner `-verify' [OPTION]… FILE |
When the first form is used, the tool signs the designated JAR file. The second form, on the other hand, is used to verify a previously signed JAR file.
FILE is the .JAR file to process; i.e., to sign if the first syntax form is used, or to verify if the second syntax form is used instead.
ALIAS must be a known Alias of a Key Entry in the designated Key Store. The private key material associated with this Alias is then used for signing the designated .JAR file.
| 2.1.1 Common options | Options used when signing or verifying a file | |
| 2.1.2 Signing options | Options only used when signing a .JAR file | |
| 2.1.3 Verification options | Options only used when verifying a .JAR file |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following options may be used when the tool is used for either signing, or verifying, a .JAR file.
-verboseUse this option to force the tool to generate more verbose messages, during its processing.
-internalsfWhen present, the tool will include -which otherwise it does not- the .SF file in the .DSA generated file.
-sectionsonlyWhen present, the tool will include in the .SF generated file -which otherwise it does not- a header containing a hash of the whole manifest file. When that header is included, the tool can quickly check, during verification, if the hash (in the header) matches or not the manifest file.
-provider PROVIDER_CLASS_NAMEA fully qualified class name of a Security Provider to add to the current list of Security Providers already installed in the JVM in-use. If a provider class is specified with this option, and was successfully added to the runtime -i.e. it was not already installed- then the tool will attempt to remove this Security Provider before exiting.
-helpPrints a help text similar to this one.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following options may be specified when using the tool for signing purposes.
-keystore URLUse this option to specify the location of the key store to use. The default value is a file URL referencing the file named `.keystore' located in the path returned by the call to java.lang.System#getProperty(String) using user.home as argument.
If a URL was specified, but was found to be malformed -e.g. missing protocol element- the tool will attempt to use the URL value as a file-name (with absolute or relative path-name) of a key store -as if the protocol was file:.
-storetype STORE_TYPEUse this option to specify the type of the key store to use. The default value, if this option is omitted, is that of the property keystore.type in the security properties file, which is obtained by invoking the static method call getDefaultType() in java.security.KeyStore.
-storepass PASSWORDUse this option to specify the password which will be used to unlock the key store. If this option is missing, the User will be prompted to provide a password.
-keypass PASSWORDUse this option to specify the password which the tool will use to unlock the Key Entry associated with the designated Alias.
If this option is omitted, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-sigfile NAMEUse this option to designate a literal that will be used to construct file names for both the .SF and .DSA signature files. These files will be generated, by the tool, and placed in the `META-INF' directory of the signed JAR. Permissible characters for NAME must be in the range "a-zA-Z0-9_-". All characters will be converted to upper-case ones.
If this option is missing, the first eight characters of the ALIAS argument will be used. When this is the case, any character in ALIAS that is outside the permissible range of characters will be replaced by an underscore.
-signedjar FILEUse this option to specify the file name of the signed JAR. If this option is omitted, then the signed JAR will be named the same as FILE; i.e., the input JAR file will be replaced with the signed copy.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following options may be specified when using the tool for verification purposes.
-verifyUse this option to indicate that the tool is to be used for verification purposes.
-certsThis option is used in conjunction with the `-verbose' option. When present, along with the `-verbose' option, the tool will print more detailed information about the certificates of the signer(s) being processed.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
keytool Tool Cryptographic credentials, in a Java environment, are usually stored in a Key Store. The Java SDK specifies a Key Store as a persistent container of two types of objects: Key Entries and Trusted Certificates. The security tool keytool is a Java-based application for managing those types of objects.
A Key Entry represents the private key part of a key-pair used in Public-Key Cryptography, and a signed X.509 certificate which authenticates the public key part for a known entity; i.e. the owner of the key-pair. The X.509 certificate itself contains the public key part of the key-pair.
A Trusted Certificate is a signed X.509 certificate issued by a trusted entity. The Trust in this context is relative to the User of the keytool. In other words, the existence of a Trusted Certificate in the Key Store processed by a keytool command implies that the User trusts the Issuer of that Trusted Certificate to also sign, and hence authenticates, other Subjects the tool may process.
Trusted Certificates are important because they allow the tool to mechanically construct Chains of Trust starting from one of the Trusted Certificates in a Key Store and ending with a certificate whose Issuer is potentially unknown. A valid chain is an ordered list, starting with a Trusted Certificate (also called the anchor), ending with the target certificate, and satisfying the condition that the Subject of certificate #i is the Issuer of certificate #i + 1.
The keytool is invoked from the command line as follows:
keytool [COMMAND] ... |
Multiple COMMANDs may be specified at once, each complete with its own options. keytool will parse all the arguments, before processing, and executing, each COMMAND. If an exception occurs while executing one COMMAND keytool will abort. Note however that because the implementation of the tool uses code to parse command line options that also supports GNU-style options, you have to separate each command group with a double-hyphen; e.g
keytool -list -- -printcert -alias mykey |
Here is a summary of the commands supported by the tool:
-genkey [OPTION]…Generate a new Key Entry, eventually creating a new key store.
-import [OPTION]…Add, to a key store, Key Entries (private keys and certificate chains authenticating the public keys) and Trusted Certificates (3rd party certificates which can be used as Trust Anchors when building chains-of-trust).
-selfcert [OPTION]…Generate a new self-signed Trusted Certificate.
-cacert [OPTION]…Import a CA Trusted Certificate.
-identitydb [OPTION]…NOT IMPLEMENTED YET.
Import a JDK 1.1 style Identity Database.
-certreq [OPTION]…Issue a Certificate Signing Request (CSR) which can be then sent to a Certification Authority (CA) to issue a certificate signed (by the CA) and authenticating the Subject of the request.
-export [OPTION]…Export a certificate from a key store.
-list [OPTION]…Print one or all certificates in a key store to STDOUT.
-printcert [OPTION]…Print a human-readable form of a certificate, in a designated file, to STDOUT.
-keyclone [OPTION]…Clone a Key Entry in a key store.
-storepasswd [OPTION]…Change the password protecting a key store.
-keypasswd [OPTION]…Change the password protecting a Key Entry in a key store.
-delete [OPTION]…Delete a Key Entry or a Trusted Certificate from a key store.
| 2.2.1 Getting help | How to get help with keytool commands | |
| 2.2.2 Common options | Options used in more than one command | |
| 2.2.3 X.500 Distinguished Names | X.500 Distinguished Names used in certificates | |
| 2.2.4 Add/Update commands | Commands for adding data to a Key Store | |
| 2.2.5 Export commands | Commands for exporting data from a Key Store | |
| 2.2.6 Display commands | Commands for displaying data in a Key Store | |
| 2.2.7 Management commands | Commands for managing a Key Store |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
To get a general help text about the tool, use the -help option; e.g.
|
To get more specific help text about one of the tool's command use the -help option for that command; e.g.
|
In both instances, the tool will print a help text and then will exit the running JVM.
It is worth noting here that the help messages printed by the tool are I18N-ready. This means that if/when the contents of the tool's Message Bundle properties file are available in languages other than English, you may see those messages in that language.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following `OPTION's are used in more than one COMMAND. They are described here to reduce redundancy.
-alias AliasEvery entry, be it a Key Entry or a Trusted Certificate, in a key store is uniquely identified by a user-defined Alias string. Use this option to specify the Alias to use when referring to an entry in the key store. Unless specified otherwise, a default value of mykey shall be used when this option is omitted from the command line.
-keyalg ALGORITHMUse this option to specify the canonical name of the key-pair generation algorithm. The default value for this option is DSS (a synonym for the Digital Signature Algorithm also known as DSA).
-keysize SIZEUse this option to specify the number of bits of the shared modulus (for both the public and private keys) to use when generating new keys. A default value of 1024 will be used if this option is omitted from the command line.
-validity DAY_COUNTUse this option to specify the number of days a newly generated certificate will be valid for. The default value is 90 (days) if this option is omitted from the command line.
-storetype STORE_TYPEUse this option to specify the type of the key store to use. The default value, if this option is omitted, is that of the property keystore.type in the security properties file, which is obtained by invoking the static method call getDefaultType() in java.security.KeyStore.
-storepass PASSWORDUse this option to specify the password protecting the key store. If this option is omitted from the command line, you will be prompted to provide a password.
-keystore URLUse this option to specify the location of the key store to use. The default value is a file URL referencing the file named `.keystore' located in the path returned by the call to java.lang.System#getProperty(String) using user.home as argument.
If a URL was specified, but was found to be malformed -e.g. missing protocol element- the tool will attempt to use the URL value as a file-name (with absolute or relative path-name) of a key store -as if the protocol was file:.
-provider PROVIDER_CLASS_NAMEA fully qualified class name of a Security Provider to add to the current list of Security Providers already installed in the JVM in-use. If a provider class is specified with this option, and was successfully added to the runtime -i.e. it was not already installed- then the tool will attempt to removed this Security Provider before exiting.
-file FILEUse this option to designate a file to use with a command. When specified with this option, the value is expected to be the fully qualified path of a file accessible by the File System. Depending on the command, the file may be used as input or as output. When this option is omitted from the command line, STDIN will be used instead, as the source of input, and STDOUT will be used instead as the output destination.
-vUnless specified otherwise, use this option to enable more verbose output.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
A Distinguished Name (or DN) MUST be supplied with some of the COMMANDs using a -dname option. The syntax of a valid value for this option MUST follow RFC-2253 specifications. Namely the following components (with their accepted meaning) will be recognized. Note that the component name is case-insensitive:
The Common Name; e.g. host.domain.com
The Organizational Unit; e.g. IT Department
The Organization Name; e.g. The Sample Company
The Locality Name; e.g. Sydney
The State Name; e.g. New South Wales
The 2-letter Country identifier; e.g. AU
When specified with a -dname option, each pair of component/value will be separated from the other with a comma. Each component and value pair MUST be separated by an equal sign. For example, the following is a valid DN value:
CN=host.domain.com, O=The Sample Company, L=Sydney, ST=NSW, C=AU |
If the Distinguished Name is required, and no valid default value can be used, the tool will prompt you to enter the information through the console.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 2.2.4.1 The `-genkey' command | Generate private key and self-signed certificate | |
| 2.2.4.2 The `-import' command | Import certificates and certificate replies | |
| 2.2.4.3 The `-selfcert' command | Generate self-signed certificate | |
| 2.2.4.4 The `-cacert' command | Import a CA Trusted Certificate | |
| 2.2.4.5 The `-identitydb' command | Import JDK-1 style identities |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to generate a new key-pair (both private and public keys), and save these credentials in the key store as a Key Entry, associated with the designated (if was specified with the `-alias' option) or default (if the `-alias' option is omitted) Alias.
The private key material will be protected with a user-defined password (see `-keypass' option). The public key on the other hand will be part of a self-signed X.509 certificate, which will form a 1-element chain and will be saved in the key store.
-alias ALIASFor more details see ALIAS.
-keyalg ALGORITHMFor more details see ALGORITHM.
-keysize KEY_SIZEFor more details see KEY_SIZE.
-sigalg ALGORITHMThe canonical name of the digital signature algorithm to use for signing certificates. If this option is omitted, a default value will be chosen based on the type of the key-pair; i.e., the algorithm that ends up being used by the -keyalg option. If the key-pair generation algorithm is DSA, the value for the signature algorithm will be SHA1withDSA. If on the other hand the key-pair generation algorithm is RSA, then the tool will use MD5withRSA as the signature algorithm.
-dname NAMEThis a mandatory value for the command. If no value is specified -i.e. the `-dname' option is omitted- the tool will prompt you to enter a Distinguished Name to use as both the Owner and Issuer of the generated self-signed certificate.
For more details see X.500 DISTINGUISHED NAME.
-keypass PASSWORDUse this option to specify the password which the tool will use to protect the newly created Key Entry.
If this option is omitted, you will be prompted to provide a password.
-validity DAY_COUNTFor more details see DAY_COUNT.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to read an X.509 certificate, or a PKCS#7 Certificate Reply from a designated input source and incorporate the certificates into the key store.
If the Alias does not already exist in the key store, the tool treats the certificate read from the input source as a new Trusted Certificate. It then attempts to discover a chain-of-trust, starting from that certificate and ending at another Trusted Certificate, already stored in the key store. If the `-trustcacerts' option is present, an additional key store, of type JKS named `cacerts', and assumed to be present in `${JAVA_HOME}/lib/security' will also be consulted if found -${JAVA_HOME} refers to the location of an installed Java Runtime Environment (JRE). If no chain-of-trust can be established, and unless the -noprompt option has been specified, the certificate is printed to STDOUT and the user is prompted for a confirmation.
If Alias exists in the key store, the tool will treat the certificate(s) read from the input source as a Certificate Reply, which can be a chain of certificates, that eventually would replace the chain of certificates associated with the Key Entry of that Alias. The substitution of the certificates only occurs if a chain-of-trust can be established between the bottom certificate of the chain read from the input file and the Trusted Certificates already present in the key store. Again, if the `-trustcacerts' option is specified, additional Trusted Certificates in the same `cacerts' key store will be considered. If no chain-of-trust can be established, the operation will abort.
-alias ALIASFor more details see ALIAS.
-file FILEFor more details see FILE.
-keypass PASSWORDUse this option to specify the password which the tool will use to protect the Key Entry associated with the designated Alias, when replacing this Alias' chain of certificates with that found in the certificate reply.
If this option is omitted, and the chain-of-trust for the certificate reply has been established, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-nopromptUse this option to prevent the tool from prompting the user.
-trustcacertsUse this option to indicate to the tool that a key store, of type JKS, named `cacerts', and usually located in `lib/security' in an installed Java Runtime Environment should be considered when trying to establish chain-of-trusts.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to generate a self-signed X.509 version 1 certificate. The newly generated certificate will form a chain of one element which will replace the previous chain associated with the designated Alias (if `-alias' option was specified), or the default Alias (if `-alias' option was omitted).
-alias ALIASFor more details see ALIAS.
-sigalg ALGORITHMThe canonical name of the digital signature algorithm to use for signing the certificate. If this option is omitted, a default value will be chosen based on the type of the private key associated with the designated Alias. If the private key is a DSA one, the value for the signature algorithm will be SHA1withDSA. If on the other hand the private key is an RSA one, then the tool will use MD5withRSA as the signature algorithm.
-dname NAMEUse this option to specify the Distinguished Name of the newly generated self-signed certificate. If this option is omitted, the existing Distinguished Name of the base certificate in the chain associated with the designated Alias will be used instead.
For more details see X.500 DISTINGUISHED NAME.
-validity DAY_COUNTFor more details see DAY_COUNT.
-keypass PASSWORDUse this option to specify the password which the tool will use to unlock the Key Entry associated with the designated Alias.
If this option is omitted, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to import, a CA certificate and add it to the key store as a Trusted Certificate. The Alias for this new entry will be constructed from the FILE's base-name after replacing hyphens and dots with underscores.
This command is useful when used in a script that recursively visits a directory of CA certificates to populate a cacerts.gkr Key Store of trusted certificates which can then be used commands that specify the `-trustcacerts' option.
-file FILEFor more details see FILE.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
NOT IMPLEMENTED YET.
Use this command to import a JDK 1.1 style Identity Database.
-file FILEFor more details see FILE.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 2.2.5.1 The `-certreq' command | Generate Certificate Signing Requests (CSR) | |
| 2.2.5.2 The `-export' command | Export a certificate in a Key Store |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to generate a PKCS#10 Certificate Signing Request (CSR) and write it to a designated output destination. The contents of the destination should look something like the following:
-----BEGIN NEW CERTIFICATE REQUEST----- MI...QAwXzEUMBIGA1UEAwwLcnNuQGdudS5vcmcxGzAZBgNVBAoMElUg Q2...A0GA1UEBwwGU3lkbmV5MQwwCgYDVQQIDANOU1cxCzAJBgNVBACC ... FC...IVwNVOfQLRX+O5kAhQ/a4RTZme2L8PnpvgRwrf7Eg8D6w== -----END NEW CERTIFICATE REQUEST----- |
IMPORTANT: Some documentation (e.g. RSA examples) claims that the Attributes field, in the CSR is OPTIONAL while RFC-2986 implies the opposite. This implementation considers this field, by default, as OPTIONAL, unless the option `-attributes' is specified on the command line.
-alias ALIASFor more details see ALIAS.
-sigalg ALGORITHMThe canonical name of the digital signature algorithm to use for signing the certificate. If this option is omitted, a default value will be chosen based on the type of the private key associated with the designated Alias. If the private key is a DSA one, the value for the signature algorithm will be SHA1withDSA. If on the other hand the private key is an RSA one, then the tool will use MD5withRSA as the signature algorithm.
-file FILEFor more details see FILE.
-keypass PASSWORDUse this option to specify the password which the tool will use to unlock the Key Entry associated with the designated Alias.
If this option is omitted, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
-attributesUse this option to force the tool to encode a NULL DER value in the CSR as the value of the Attributes field.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to export a certificate stored in a key store to a designated output destination, either in binary format (if the `-v' option is specified), or in RFC-1421 compliant encoding (if the `-rfc' option is specified instead).
-alias ALIASFor more details see ALIAS.
-file FILEFor more details see FILE.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-rfcUse RFC-1421 specifications when encoding the output.
-vOutput the certificate in binary DER encoding. This is the default output format of the command if neither `-rfc' nor -v options were detected on the command line. If both this option and the `-rfc' option are detected on the command line, the tool will opt for the RFC-1421 style encoding.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 2.2.6.1 The `-list' command | Display information about one or all Aliases | |
| 2.2.6.2 The `-printcert' command | Print a certificate or a certificate fingerprint |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to print one or all of a key store entries to STDOUT. Usually this command will only print a fingerprint of the certificate, unless either the `-rfc' or the `-v' option is specified.
-alias ALIASIf this option is omitted, the tool will print ALL the entries found in the key store.
For more details see ALIAS.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-rfcUse RFC-1421 specifications when encoding the output.
-vOutput the certificate in human-readable format. If both this option and the `-rfc' option are detected on the command line, the tool will opt for the human-readable form and will not abort the command.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to read a certificate from a designated input source and print it to STDOUT in a human-readable form.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 2.2.7.1 The `-keyclone' command | Clone a Key Entry in a Key Store | |
| 2.2.7.2 The `-storepasswd' command | Change the password protecting a Key Store | |
| 2.2.7.3 The `-keypasswd' command | Change the password protecting a Key Entry | |
| 2.2.7.4 The `-delete' command | Remove an entry in a Key Store |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to clone an existing Key Entry and store it under a new (different) Alias protecting, its private key material with possibly a new password.
-alias ALIASFor more details see ALIAS.
-dest ALIASUse this option to specify the new Alias which will be used to identify the cloned copy of the Key Entry.
-keypass PASSWORDUse this option to specify the password which the tool will use to unlock the Key Entry associated with the designated Alias.
If this option is omitted, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-new PASSWORDUse this option to specify the password protecting the private key material of the newly cloned copy of the Key Entry.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to change the password protecting a key store.
-new PASSWORDThe new, and different, password which will be used to protect the designated key store.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to change the password protecting the private key material of a designated Key Entry.
-alias ALIASFor more details see ALIAS.
Use this option to specify the password which the tool will use to unlock the Key Entry associated with the designated Alias.
If this option is omitted, the tool will first attempt to unlock the Key Entry using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
-new PASSWORDThe new, and different, password which will be used to protect the private key material of the designated Key Entry.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Use this command to delete a designated key store entry.
-alias ALIASFor more details see ALIAS.
-storetype STORE_TYPEFor more details see STORE_TYPE.
-keystore URLFor more details see URL.
-storepass PASSWORDFor more details see PASSWORD.
-provider PROVIDER_CLASS_NAMEFor more details see PROVIDER_CLASS_NAME.
-vFor more details see verbose.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This is a list of currently undocumented classpath tools: jar, javah, gcjh, native2ascii, orbd, serialver, rmid, rmiregistry and tnameserv.
3.1 The jar Tool | Archive tool for Java archives | |
3.2 The javah Tool | A java header compiler | |
3.3 The gcjh Tool | A java header compiler (old version) | |
3.4 The native2ascii Tool | An encoding converter | |
3.5 The orbd object request broker daemon | An object request broker daemon | |
3.6 The serialver version command | A serial version command | |
3.7 The rmid RMI activation system daemon | RMI activation daemon | |
3.8 The rmiregistry Tool | Remote object registry | |
3.9 The tnameserv Tool | Naming service |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
jar Tool gjar is an implementation of Sun's jar utility that comes with
the JDK.
If any file is a directory then it is processed recursively. The manifest file name and the archive file name needs to be specified in the same order the `-m' and `-f' flags are specified.
Operation mode:
-cCreate new archive.
-tList table of contents for archive.
-xExtract named (or all) files from archive.
-uUpdate existing archive.
-i FILECompute archive index.
Operation modifiers:
-f FILESpecify archive file name.
-0Store only; use no ZIP compression.
-vGenerate verbose output on standard output.
-MDo not create a manifest file for the entries.
-m manifestInclude manifest information from specified manifest file.
File name selection:
-C DIR FILEChange to the DIR and include the following FILE.
-@Read the names of the files to add to the archive from stdin. This option is supported only in combination with `-c' or `-u'. Non standard option added in the GCC version.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
java(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
javah Tool The gjavah program is used to generate header files from class
files. It can generate both CNI and JNI header files, as well as stub
implementation files which can be used as a basis for implementing the
required native methods.
-d DIRSet output directory.
-o FILESet output file (only one of `-d' or `-o' may be used).
-cmdfile FILERead command file.
-all DIROperate on all class files under directory DIR.
-stubsEmit stub implementation.
-jniEmit JNI stubs or header (default).
-cniEmit CNI stubs or header (default JNI).
-verboseSet verbose mode.
-forceOutput files should always be written.
Class path options:
-classpath PATHSet the class path.
-IDIRAdd directory to class path.
-bootclasspath PATHSet the boot class path.
-extdirs PATHSet the extension directory path.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
javac(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
gcjh Tool The gcjh program is used to generate header files from class
files. It can generate both CNI and JNI header files, as well as stub
implementation files which can be used as a basis for implementing the
required native methods. It is similar to javah but has
slightly different command line options, and defaults to CNI.
See javah for a full description; this page only lists the
additional options provided by gcjh.
CNI text options
-add textInsert text into class body.
-append textAppend text after class declaration.
-friend textInsert text as a friend declaration.
-prepend textInsert text before start of class.
Compatibility options (unused)
-td DIR-M-MM-MD-MMDUnused compatibility option.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
javac(1), javah(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
native2ascii Tool To be written …
-encoding NAMESet the encoding to use.
-reversedConvert from encoding to native.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
javac(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
orbd object request broker daemon To be written …
-ORBInitialPort PORTPort on which persistent naming service is to be started.
-ior FILEFile in which to store persistent naming service's IOR reference
-directory DIRDirectory in which to store persistent data.
-restartRestart persistent naming service, clearing persistent naming database.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
java(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
serialver version command Print the serialVersionUID of the specified classes.
-classpath PATHClass path to use to find classes.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
javac(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
rmid RMI activation system daemon rmiregistry starts a remote object registry on the current
host. If no port number is specified, then port 1099 is used.
Activation process control:
-port PORTPort on which activation system is to be started.
-restartRestart activation system, clearing persistent naming database, if any.
-stopStop activation system.
Persistence:
-persistentMake activation system persistent.
-directory DIRDirectory in which to store persistent data.
Debugging:
-verboseLog binding events to standard out.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
java(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
rmiregistry Tool grmiregistry starts a remote object registry on the current
host. If no port number is specified, then port 1099 is used.
Registry process control:
-restartRestart RMI naming service, clearing persistent naming database, if any.
-stopStop RMI naming service.
Persistence:
-persistentMake RMI naming service persistent.
-directory DIRDirectory in which to store persistent data.
Debugging:
-verboseLog binding events to standard out.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
java(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
tnameserv Tool To be written …
-ORBInitialPort PORTPort on which naming service is to be started.
-ior FILEFile in which to store naming service's IOR reference.
Standard options:
-helpPrint help text, then exit.
-versionPrint version number, then exit.
-JOPTIONPass argument to the Java runtime.
java(1), …
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Some tools -see section Security Tools- allow using other than the English language when prompting the User for input, and outputting messages. This chapter describes the elements used to offer this support and how they can be adapted for use with specific languages.
| 4.1 Language-specific resources | Where resources are located | |
| 4.2 Message formats | How messages are internationalized |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The Tools use Java ResourceBundles to store messages, and message templates they use at runtime to generate the message text itself, depending on the locale in use at the time.
The Resource Bundles these tools use are essentially Java Properties files consisting of a set of Name/Value pairs. The Name is the Property Name and the Value is a substitution string that is used when the code references the associated Name. For example the following is a line in a Resource Bundle used by the keytool Tool:
Command.23=A correct key password MUST be provided |
When the tool needs to signal a mandatory but missing key password, it would reference the property named Command.23 and the message "A correct key password MUST be provided" will be used instead. This indirect referencing of "resources" permits replacing, as late as possible, the English strings with strings in other languages, provided of course Resource Bundles in those languages are provided.
For the GNU Classpath Tools described in this Guide, the Resource Bundles are files named `messages[_ll[_CC[_VV]]].properties' where:
Is the 2-letter code for the Language,
Is the 2-letter code for the Region, and