* ipa-reference.c (analyze_function): Consider also addresses taken
[official-gcc.git] / libjava / classpath / doc / tools.texinfo
blob28252cdc80912ba124f37f6333a93c47715852da
1 \input texinfo @c -*-texinfo-*-
3 @c %**start of header
4 @setfilename tools.info
5 @settitle GNU Classpath Tools Guide
6 @c %**end of header
8 @setchapternewpage on
10 @ifinfo
11 This file documents the Tools included in a standard distribution of the GNU
12 Classpath project deliverables.
14 Copyright (C) 2006 Free Software Foundation, Inc.
16 @ifnotplaintext
17 @dircategory GNU Libraries
18 @direntry
19 * Classpath Tools: (tools).       GNU Classpath Tools Guide
20 @end direntry
21 @end ifnotplaintext
22 @end ifinfo
24 @titlepage
25 @title GNU Classpath Tools Guide
26 @author The GNU Classpath Team
28 @page
29 @vskip 0pt plus 1filll
30 Copyright @copyright{} 2006 Free Software Foundation, Inc.
31 @sp 2
32 Permission is granted to make and distribute verbatim copies of this document provided the copyright notice and this permission notice are preserved on all copies.
34 Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
36 Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation.
38 @end titlepage
40 @contents
42 @ifinfo
43 @node Top, Applet Tools, (dir), (dir)
44 @top GNU Classpath Tools Guide
46 This document contains important information you need to know in order to use
47 the tools included in the GNU Classpath project deliverables.
49 The Tools aim at providing a free replacement, similar in their behavior, to
50 their counter-parts found in the Reference Implementation (RI) of the Java
51 Software Development Kit (SDK).
53 @end ifinfo
55 @menu
56 * Applet Tools::               Work with applets
57 * Security Tools::             Work securely with Java applications
58 * I18N Issues::                How to add support for non-English languages
60 @detailmenu
61  --- The Detailed Node Listing ---
63 Applet Tools
65 * appletviewer Tool::          Load applets
66 * gcjwebplugin::               Load applets in a web browser
68 Security Tools
70 * jarsigner Tool::             Sign and verify .JAR files
71 * keytool Tool::               Manage private keys and public certificates
73 jarsigner Tool
75 * Common jarsigner Options::   Options used when signing or verifying a file
76 * Signing Options::            Options only used when signing a .JAR file
77 * Verification Options::       Options only used when verifying a .JAR file
79 keytool Tool
81 * Getting Help::               How to get help with keytool commands
82 * Common keytool Options::     Options used in more than one command
83 * Distinguished Names::        X.500 Distinguished Names used in certificates
84 * Add/Update Commands::        Commands for adding data to a Key Store
85 * Export Commands::            Commands for exporting data from a Key Store
86 * Display Commands::           Commands for displaying data in a Key Store
87 * Management Commands::        Commands for managing a Key Store
89 Add/Update Commands
91 * Command -genkey::            Generate private key and self-signed certificate
92 * Command -import::            Import certificates and certificate replies
93 * Command -selfcert::          Generate self-signed certificate
94 * Command -cacert::            Import a CA Trusted Certificate
95 * Command -identitydb::        Import JDK-1 style identities
97 Export Commands
99 * Command -certreq::           Generate Certificate Signing Requests (CSR)
100 * Command -export::            Export a certificate in a Key Store
102 Display Commands
104 * Command -list::              Display information about one or all Aliases
105 * Command -printcert::         Print a certificate or a certificate fingerprint
107 Management Commands
109 * Command -keyclone::          Clone a Key Entry in a Key Store
110 * Command -storepasswd::       Change the password protecting a Key Store
111 * Command -keypasswd::         Change the password protecting a Key Entry
112 * Command -delete::            Remove an entry in a Key Store
114 I18N Issues
116 * Language Resources::         Where resources are located
117 * Message Formats::            How messages are internationalized
119 @end detailmenu
120 @end menu
122 @comment ----------------------------------------------------------------------
124 @node Applet Tools, Security Tools, Top, Top
125 @comment node-name, next, previous, up
126 @chapter Applet Tools
128 Two Applet Tools are available with GNU Classpath: @b{appletviewer}
129 and @b{gcjwebplugin}.
131 To avoid conflicts with other implementations, the appletviewer
132 executable is called ``gappletviewer''.
134 @menu
135 * appletviewer Tool::          Load applets
136 * gcjwebplugin::               Load applets in a web browser
137 @end menu
139 If while using these tools you think you found a bug, then please report it at @uref{http://www.gnu.org/software/classpath/bugs.html,classpath-bugs}.
141 @comment ----------------------------------------------------------------------
143 @node appletviewer Tool, gcjwebplugin, Applet Tools, Applet Tools
144 @comment node-name, next, previous, up
145 @section The @code{appletviewer} Tool
147 @table @b
149 @item SYNOPSIS
150 @code{appletviewer [OPTION]... URL...}@*
151 @code{appletviewer [OPTION]... -code CODE}@*
152 @code{appletviewer [OPTION]... -plugin INPUT,OUTPUT}
154 @item DESCRIPTION
155 The @code{appletviewer} tool loads and runs an applet.
157 Use the first form to test applets specified by tag.  The URL should
158 resolve to an HTML document from which the @code{appletviewer} will
159 extract applet tags.  The APPLET, EMBED and OBJECT tags are supported.
160 If a given document contains multiple applet tags, all the applets
161 will be loaded, with each applet appearing in its own window.
162 Likewise, when multiple URLs are specified, each applet tag instance
163 is given its own window.  If a given document contains no recognized
164 tags the @code{appletviewer} does nothing.
166 @example
167 @code{appletviewer http://www.gnu.org/software/classpath/}
168 @end example
170 Use the second form to test an applet in development.  This form
171 allows applet tag attributes to be supplied on the command line.  Only
172 one applet may be specified using the @code{-code} option.  The
173 @code{-code} option overrides the URL form -- any URLs specified will
174 be ignored.
176 @example
177 @code{appletviewer -code Test.class -param datafile,data.txt}
178 @end example
180 @code{gcjwebplugin} uses the third form to communicate with the
181 @code{appletviewer} through named pipes.
183 @item URL OPTIONS
184 @table @b
185 @item -debug
186 This option is not yet implemented but is provided for compatibility.
188 @item -encoding CHARSET
189 Use this option to specify an alternate character encoding for the
190 specified HTML page.
192 @end table
194 @item APPLET TAG OPTIONS
195 @table @b
196 @item -code CODE
197 Use the @code{-code} option to specify the value of the applet tag
198 CODE attribute.
200 @item -codebase CODEBASE
201 Use the @code{-codebase} option to specify the value of the applet tag
202 CODEBASE attribute.
204 @item -archive ARCHIVE
205 Use the @code{-archive} option to specify the value of the applet tag
206 ARCHIVE attribute.
208 @item -width WIDTH
209 Use the @code{-width} option to specify the value of the applet tag
210 WIDTH attribute.
212 @item -height HEIGHT
213 Use the @code{-height} option to specify the value of the applet tag
214 HEIGHT attribute.
216 @item -param NAME,VALUE
217 Use the @code{-param} option to specify values for the NAME and VALUE
218 attributes of an applet PARAM tag.
220 @end table
222 @item PLUGIN OPTION
223 @table @b
224 @item -plugin INPUT,OUTPUT
225 @code{gcjwebplugin} uses the @code{-plugin} option to specify the
226 named pipe the @code{appletviewer} should use for receiving commands
227 (INPUT) and the one it should use for sending commands to
228 @code{gcjwebplugin} (OUTPUT).
230 @end table
232 @item DEBUGGING OPTION
233 @table @b
234 @item -verbose
235 Use the @code{-verbose} option to have the @code{appletviewer} print
236 debugging messages.
238 @end table
240 @item STANDARD OPTIONS
241 @table @b
242 @item -help
243 Use the @code{-help} option to have the @code{appletviewer} print a
244 usage message, then exit.
246 @item -version
247 Use the @code{-version} option to have the @code{appletviewer} print
248 its version, then exit.
250 @item -JOPTION
251 Use the @code{-J} option to pass OPTION to the virtual machine that
252 will run the @code{appletviewer}.  Unlike other options, there must
253 not be a space between the -J and OPTION.
255 @end table
256 @end table
258 @comment ----------------------------------------------------------------------
260 @node gcjwebplugin, , appletviewer Tool, Applet Tools
261 @comment node-name, next, previous, up
262 @section The @code{gcjwebplugin} Tool
264 @code{gcjwebplugin} is a plugin that adds applet support to web
265 browsers.  Currently @code{gcjwebplugin} only supports Mozilla-based
266 browsers (e.g., Firefox, Galeon, Mozilla).
268 @comment ----------------------------------------------------------------------
270 @node Security Tools, I18N Issues, Applet Tools, Top
271 @comment node-name, next, previous, up
272 @chapter Security Tools
274 Two Security Tools are available with GNU Classpath: @b{jarsigner} and @b{keytool}.
276 To avoid conflicts with other implementations, the jarsigner
277 executable is called ``gjarsigner'' and the keytool executable is
278 called ``gkeytool''.
280 @menu
281 * jarsigner Tool::             Sign and verify .JAR files
282 * keytool Tool::               Manage private keys and public certificates
283 @end menu
285 If while using these tools you think you found a bug, then please report it at @uref{http://www.gnu.org/software/classpath/bugs.html,classpath-bugs}.
287 @comment ----------------------------------------------------------------------
289 @node jarsigner Tool, keytool Tool, Security Tools, Security Tools
290 @comment node-name, next, previous, up
291 @section The @code{jarsigner} Tool
293 The @b{jarsigner} tool is invoked from the command line, in one of two forms, as follows:
295 @example
296 @code{jarsigner [OPTION]... FILE ALIAS}
297 @code{jarsigner -verify [OPTION]... FILE}
298 @end example
300 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.
302 @code{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.
304 @code{ALIAS} must be a known @i{Alias} of a @i{Key Entry} in the designated @i{Key Store}. The private key material associated with this @i{Alias} is then used for signing the designated .JAR file.
306 @menu
307 * Common jarsigner Options::   Options used when signing or verifying a file
308 * Signing Options::            Options only used when signing a .JAR file
309 * Verification Options::       Options only used when verifying a .JAR file
310 @end menu
312 @comment ----------------------------------------------------------------------
314 @node Common jarsigner Options, Signing Options, jarsigner Tool, jarsigner Tool
315 @comment node-name, next, previous, up
316 @subsection Common options
318 The following options may be used when the tool is used for either signing, or verifying, a .JAR file.
320 @table @b
321 @item -verbose
322 Use this option to force the tool to generate more verbose messages, during its processing.
324 @item -internalsf
325 When present, the tool will include --which otherwise it does not-- the @code{.SF} file in the @code{.DSA} generated file.
327 @item -sectionsonly
328 When present, the tool will include in the @code{.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.
330 @item -provider PROVIDER_CLASS_NAME
331 A fully qualified class name of a @i{Security Provider} to add to the current list of @i{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 @i{Security Provider} before exiting.
333 @item -help
334 Prints a help text similar to this one.
336 @end table
338 @comment ----------------------------------------------------------------------
340 @node Signing Options, Verification Options, Common jarsigner Options, jarsigner Tool
341 @comment node-name, next, previous, up
342 @subsection Signing options
344 The following options may be specified when using the tool for signing purposes.
346 @table @b
347 @item -keystore URL
348 Use this option to specify the location of the key store to use. The default value is a file URL referencing the file named @file{.keystore} located in the path returned by the call to @code{java.lang.System#getProperty(String)} using @code{user.home} as argument.
350 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 @code{file:}.
352 @item -storetype STORE_TYPE
353 Use 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 @code{keystore.type} in the security properties file, which is obtained by invoking the static method call @code{getDefaultType()} in @code{java.security.KeyStore}.
355 @item -storepass PASSWORD
356 Use 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.
358 @item -keypass PASSWORD
359 Use this option to specify the password which the tool will use to unlock the @i{Key Entry} associated with the designated @i{Alias}.
361 If this option is omitted, the tool will first attempt to unlock the @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
363 @item -sigfile NAME
364 Use this option to designate a literal that will be used to construct file names for both the @code{.SF} and @code{.DSA} signature files. These files  will be generated, by the tool, and placed in the @file{META-INF} directory of the signed JAR.  Permissible characters for @code{NAME} must be in the range "a-zA-Z0-9_-".  All characters will be converted to upper-case ones.
366 If this option is missing, the first eight characters of the @code{ALIAS} argument will be used. When this is the case, any character in @code{ALIAS} that is outside the permissible range of characters will be replaced by an underscore.
368 @item -signedjar FILE
369 Use 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 @code{FILE}; i.e. the input JAR file will be replaced with the signed copy.
371 @end table
373 @comment ----------------------------------------------------------------------
375 @node Verification Options, , Signing Options, jarsigner Tool
376 @comment node-name, next, previous, up
377 @subsection Verification options
379 The following options may be specified when using the tool for verification purposes.
381 @table @b
382 @item -verify
383 Use this option to indicate that the tool is to be used for verification purposes.
385 @item -certs
386 This option is used in conjunction with the @code{-verbose} option. When present, along with the @code{-verbose} option, the tool will print more detailed information about the certificates of the signer(s) being processed.
388 @end table
390 @comment ----------------------------------------------------------------------
392 @node keytool Tool, , jarsigner Tool, Security Tools
393 @comment node-name, next, previous, up
394 @section The @code{keytool} Tool
396 Cryptographic credentials, in a Java environment, are usually stored in a @i{Key Store}. The Java SDK specifies a @i{Key Store} as a persistent container of two types of objects: @i{Key Entries} and @i{Trusted Certificates}. The security tool @b{keytool} is a Java-based application for managing those types of objects.
398 A @i{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.
400 A @i{Trusted Certificate} is a signed X.509 certificate issued by a trusted entity. The @i{Trust} in this context is relative to the User of the @b{keytool}. In other words, the existence of a @i{Trusted Certificate} in the @i{Key Store} processed by a @b{keytool} command implies that the User trusts the @i{Issuer} of that @i{Trusted Certificate} to also sign, and hence authenticates, other @i{Subjects} the tool may process.
402 @i{Trusted Certificates} are important because they allow the tool to mechanically construct @i{Chains of Trust} starting from one of the @i{Trusted Certificates} in a @i{Key Store} and ending with a certificate whose @i{Issuer} is potentially unknown. A valid chain is an ordered list, starting with a @i{Trusted Certificate} (also called the @i{anchor}), ending with the target certificate, and satisfying the condition that the @i{Subject} of certificate @code{#i} is the @i{Issuer} of certificate @code{#i + 1}.
404 The @b{keytool} is invoked from the command line as follows:
406 @example
407 @code{keytool [COMMAND]...}
408 @end example
410 Multiple @code{COMMAND}s may be specified at once, each complete with its own options. @b{keytool} will parse all the arguments, before processing, and executing, each @code{COMMAND}. If an exception occurs while executing one @code{COMMAND} @b{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
412 @example
413 @code{keytool -list -- -printcert -alias mykey}
414 @end example
416 Here is a summary of the commands supported by the tool:
418 @enumerate
419 @item Add/Update commands
420 @itemize @bullet
421 @item -genkey [OPTION]@dots{}
422 Generate a new @i{Key Entry}, eventually creating a new key store.
424 @item -import [OPTION]@dots{}
425 Add, to a key store, @i{Key Entries} (private keys and certificate chains authenticating the public keys) and @i{Trusted Certificates} (3rd party certificates which can be used as @i{Trust Anchors} when building chains-of-trust).
427 @item -selfcert [OPTION]@dots{}
428 Generate a new self-signed @i{Trusted Certificate}.
430 @item -cacert [OPTION]@dots{}
431 Import a CA @i{Trusted Certificate}.
433 @item -identitydb [OPTION]@dots{}
434 @b{NOT IMPLEMENTED YET}.@*
435 Import a JDK 1.1 style Identity Database.
436 @end itemize
438 @item Export commands
439 @itemize @bullet
440 @item -certreq [OPTION]@dots{}
441 Issue a @i{Certificate Signing Request} (CSR) which can be then sent to a @i{Certification Authority} (CA) to issue a certificate signed (by the CA) and authenticating the @i{Subject} of the request.
443 @item -export [OPTION]@dots{}
444 Export a certificate from a key store.
445 @end itemize
447 @item Display commands
448 @itemize @bullet
449 @item -list [OPTION]@dots{}
450 Print one or all certificates in a key store to @code{STDOUT}.
452 @item -printcert [OPTION]@dots{}
453 Print a human-readable form of a certificate, in a designated file, to @code{STDOUT}.
454 @end itemize
456 @item Management commands
457 @itemize @bullet
458 @item -keyclone [OPTION]@dots{}
459 Clone a @i{Key Entry} in a key store.
461 @item -storepasswd [OPTION]@dots{}
462 Change the password protecting a key store.
464 @item -keypasswd [OPTION]@dots{}
465 Change the password protecting a @i{Key Entry} in a key store.
467 @item -delete [OPTION]@dots{}
468 Delete a @i{Key Entry} or a @i{Trusted Certificate} from a key store.
469 @end itemize
471 @end enumerate
473 @menu
474 * Getting Help::               How to get help with keytool commands
475 * Common keytool Options::     Options used in more than one command
476 * Distinguished Names::        X.500 Distinguished Names used in certificates
477 * Add/Update Commands::        Commands for adding data to a Key Store
478 * Export Commands::            Commands for exporting data from a Key Store
479 * Display Commands::           Commands for displaying data in a Key Store
480 * Management Commands::        Commands for managing a Key Store
481 @end menu
483 @comment ----------------------------------------------------------------------
485 @node Getting Help, Common keytool Options, keytool Tool, keytool Tool
486 @comment node-name, next, previous, up
487 @subsection Getting help
489 To get a general help text about the tool, use the @code{-help} option; e.g.
491 @example
492 @code{keytool -help}
493 @end example
495 To get more specific help text about one of the tool's command use the @code{-help} option for that command; e.g.
497 @example
498 @code{keytool -genkey -help}
499 @end example
501 In both instances, the tool will print a help text and then will exit the running JVM.
503 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 @i{Message Bundle} properties file are available in languages other than English, you may see those messages in that language.
505 @comment ----------------------------------------------------------------------
507 @node Common keytool Options, Distinguished Names, Getting Help, keytool Tool
508 @comment node-name, next, previous, up
509 @subsection Common options
511 The following @code{OPTION}s are used in more than one @code{COMMAND}. They are described here to reduce redundancy.
513 @table @b
514 @anchor{alias}
515 @item -alias ALIAS
516 Every entry, be it a @i{Key Entry} or a @i{Trusted Certificate}, in a key store is uniquely identified by a user-defined @i{Alias} string. Use this option to specify the @i{Alias} to use when referring to an entry in the key store. Unless specified otherwise, a default value of @code{mykey} shall be used when this option is omitted from the command line.
518 @anchor{keyalg}
519 @item -keyalg ALGORITHM
520 Use this option to specify the canonical name of the key-pair generation algorithm. The default value for this option is @code{DSS} (a synonym for the Digital Signature Algorithm also known as DSA).
522 @anchor{keysize}
523 @item -keysize SIZE
524 Use 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 @code{1024} will be used if this option is omitted from the command line.
526 @anchor{validity}
527 @item -validity DAY_COUNT
528 Use this option to specify the number of days a newly generated certificate will be valid for. The default value is @code{90} (days) if this option is omitted from the command line.
530 @anchor{storetype}
531 @item -storetype STORE_TYPE
532 Use 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 @code{keystore.type} in the security properties file, which is obtained by invoking the static method call @code{getDefaultType()} in @code{java.security.KeyStore}.
534 @anchor{storepass}
535 @item -storepass PASSWORD
536 Use 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.
538 @anchor{keystore}
539 @item -keystore URL
540 Use this option to specify the location of the key store to use. The default value is a file URL referencing the file named @file{.keystore} located in the path returned by the call to @code{java.lang.System#getProperty(String)} using @code{user.home} as argument.
542 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 @code{file:}.
544 @anchor{provider}
545 @item -provider PROVIDER_CLASS_NAME
546 A fully qualified class name of a @i{Security Provider} to add to the current list of @i{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 @i{Security Provider} before exiting.
548 @anchor{file}
549 @item -file FILE
550 Use 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, @code{STDIN} will be used instead, as the source of input, and @code{STDOUT} will be used instead as the output destination.
552 @anchor{verbose}
553 @item -v
554 Unless specified otherwise, use this option to enable more verbose output.
556 @end table
558 @comment ----------------------------------------------------------------------
560 @node Distinguished Names, Add/Update Commands, Common keytool Options, keytool Tool
561 @comment node-name, next, previous, up
562 @subsection X.500 Distinguished Names
564 @anchor{dn}
565 A @i{Distinguished Name} (or DN) MUST be supplied with some of the @code{COMMAND}s using a @code{-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:
567 @ftable @var
568 @item CN
569 The Common Name; e.g. @kbd{host.domain.com}
570 @item OU
571 The Organizational Unit; e.g. @kbd{IT Department}
572 @item O
573 The Organization Name; e.g. @kbd{The Sample Company}
574 @item L
575 The Locality Name; e.g. @kbd{Sydney}
576 @item ST
577 The State Name; e.g. @kbd{New South Wales}
578 @item C
579 The 2-letter Country identifier; e.g. @kbd{AU}
580 @end ftable
582 When specified with a @code{-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:@*
584 @format
585 CN=host.domain.com, O=The Sample Company, L=Sydney, ST=NSW, C=AU
586 @end format
588 If the @i{Distinguished Name} is required, and no valid default value can be used, the tool will prompt you to enter the information through the console.
590 @comment ----------------------------------------------------------------------
592 @node Add/Update Commands, Export Commands, Distinguished Names, keytool Tool
593 @comment node-name, next, previous, up
594 @subsection Add/Update commands
596 @menu
597 * Command -genkey::            Generate private key and self-signed certificate
598 * Command -import::            Import certificates and certificate replies
599 * Command -selfcert::          Generate self-signed certificate
600 * Command -cacert::            Import a CA Trusted Certificate
601 * Command -identitydb::        Import JDK-1 style identities
602 @end menu
604 @comment ----------------------------------------------------------------------
606 @node Command -genkey, Command -import, Add/Update Commands, Add/Update Commands
607 @comment node-name, next, previous, up
608 @subsubsection @code{-genkey} command
610 Use this command to generate a new key-pair (both private and public keys), and save these credentials in the key store as a @i{Key Entry}, associated with the designated (if was specified with the @code{-alias} option) or default (if the @code{-alias} option is omitted) @i{Alias}.
612 The private key material will be protected with a user-defined password (see @code{-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.
614 @table @b
615 @item -alias ALIAS
616 For more details @pxref{alias,, ALIAS}.
618 @item -keyalg ALGORITHM
619 For more details @pxref{keyalg,, ALGORITHM}.
621 @item -keysize KEY_SIZE
622 For more details @pxref{keysize,, KEY_SIZE}.
624 @item -sigalg ALGORITHM
625 The 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 @code{DSA}, the value for the signature algorithm will be @code{SHA1withDSA}. If on the other hand the key-pair generation algorithm is @code{RSA}, then the tool will use @code{MD5withRSA} as the signature algorithm.
627 @item -dname NAME
628 This a mandatory value for the command. If no value is specified --i.e. the @code{-dname} option is omitted-- the tool will prompt you to enter a @i{Distinguished Name} to use as both the @i{Owner} and @i{Issuer} of the generated self-signed certificate.
630 For more details @pxref{dn,, X.500 DISTINGUISHED NAME}.
632 @item -keypass PASSWORD
633 Use this option to specify the password which the tool will use to protect the newly created @i{Key Entry}.
635 If this option is omitted, you will be prompted to provide a password.
637 @item -validity DAY_COUNT
638 For more details @pxref{validity,, DAY_COUNT}.
640 @item -storetype STORE_TYPE
641 For more details @pxref{storetype,, STORE_TYPE}.
643 @item -keystore URL
644 For more details @pxref{keystore,, URL}.
646 @item -storepass PASSWORD
647 For more details @pxref{storepass,, PASSWORD}.
649 @item -provider PROVIDER_CLASS_NAME
650 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
652 @item -v
653 For more details @pxref{verbose}.
655 @end table
657 @comment ----------------------------------------------------------------------
659 @node Command -import, Command -selfcert, Command -genkey, Add/Update Commands
660 @comment node-name, next, previous, up
661 @subsubsection @code{-import} command
663 Use this command to read an X.509 certificate, or a PKCS#7 @i{Certificate Reply} from a designated input source and incorporate the certificates into the key store.
665 If the @i{Alias} does not already exist in the key store, the tool treats the certificate read from the input source as a new @i{Trusted Certificate}. It then attempts to discover a chain-of-trust, starting from that certificate and ending at another @i{Trusted Certificate}, already stored in the key store. If the @code{-trustcacerts} option is present, an additional key store, of type @code{JKS} named @file{cacerts}, and assumed to be present in @file{$@{JAVA_HOME@}/lib/security} will also be consulted if found --@code{$@{JAVA_HOME@}} refers to the location of an installed @i{Java Runtime Environment} (JRE). If no chain-of-trust can be established, and unless the @code{-noprompt} option has been specified, the certificate is printed to @code{STDOUT} and the user is prompted for a confirmation.
667 If @i{Alias} exists in the key store, the tool will treat the certificate(s) read from the input source as a @i{Certificate Reply}, which can be a chain of certificates, that eventually would replace the chain of certificates associated with the @i{Key Entry} of that @i{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 @i{Trusted Certificates} already present in the key store. Again, if the @code{-trustcacerts} option is specified, additional @i{Trusted Certificates} in the same @file{cacerts} key store will be considered. If no chain-of-trust can be established, the operation will abort.
669 @table @b
670 @item -alias ALIAS
671 For more details @pxref{alias,, ALIAS}.
673 @item -file FILE
674 For more details @pxref{file,, FILE}.
676 @item -keypass PASSWORD
677 Use this option to specify the password which the tool will use to protect the @i{Key Entry} associated with the designated @i{Alias}, when replacing this @i{Alias}' chain of certificates with that found in the certificate reply.
679 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 @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
681 @item -noprompt
682 Use this option to prevent the tool from prompting the user.
684 @item -trustcacerts
685 Use this option to indicate to the tool that a key store, of type @code{JKS}, named @file{cacerts}, and usually located in @file{lib/security} in an installed @i{Java Runtime Environment} should be considered when trying to establish chain-of-trusts.
687 @item -storetype STORE_TYPE
688 For more details @pxref{storetype,, STORE_TYPE}.
690 @item -keystore URL
691 For more details @pxref{keystore,, URL}.
693 @item -storepass PASSWORD
694 For more details @pxref{storepass,, PASSWORD}.
696 @item -provider PROVIDER_CLASS_NAME
697 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
699 @item -v
700 For more details @pxref{verbose}.
702 @end table
704 @comment ----------------------------------------------------------------------
706 @node Command -selfcert, Command -cacert, Command -import, Add/Update Commands
707 @comment node-name, next, previous, up
708 @subsubsection @code{-selfcert} command
710 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 @i{Alias} (if @code{-alias} option was specified), or the default @i{Alias} (if @code{-alias} option was omitted).
712 @table @b
713 @item -alias ALIAS
714 For more details @pxref{alias,, ALIAS}.
716 @item -sigalg ALGORITHM
717 The 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 @i{Alias}. If the private key is a @code{DSA} one, the value for the signature algorithm will be @code{SHA1withDSA}. If on the other hand the private key is an @code{RSA} one, then the tool will use @code{MD5withRSA} as the signature algorithm.
719 @item -dname NAME
720 Use this option to specify the @i{Distinguished Name} of the newly generated self-signed certificate. If this option is omitted, the existing @i{Distinguished Name} of the base certificate in the chain associated with the designated @i{Alias} will be used instead.
722 For more details @pxref{dn,, X.500 DISTINGUISHED NAME}.
724 @item -validity DAY_COUNT
725 For more details @pxref{validity,, DAY_COUNT}.
727 @item -keypass PASSWORD
728 Use this option to specify the password which the tool will use to unlock the @i{Key Entry} associated with the designated @i{Alias}.
730 If this option is omitted, the tool will first attempt to unlock the @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
732 @item -storetype STORE_TYPE
733 For more details @pxref{storetype,, STORE_TYPE}.
735 @item -keystore URL
736 For more details @pxref{keystore,, URL}.
738 @item -storepass PASSWORD
739 For more details @pxref{storepass,, PASSWORD}.
741 @item -provider PROVIDER_CLASS_NAME
742 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
744 @item -v
745 For more details @pxref{verbose}.
747 @end table
749 @comment ----------------------------------------------------------------------
751 @node Command -cacert, Command -identitydb, Command -selfcert, Add/Update Commands
752 @comment node-name, next, previous, up
753 @subsubsection @code{-cacert} command
755 Use this command to import, a CA certificate and add it to the key store as a @i{Trusted Certificate}. The @i{Alias} for this new entry will be constructed from the FILE's base-name after replacing hyphens and dots with underscores.
757 This command is useful when used in a script that recursively visits a directory of CA certificates to populate a @code{cacerts.gkr} @i{Key Store} of trusted certificates which can then be used commands that specify the @code{-trustcacerts} option.
759 @table @b
760 @item -file FILE
761 For more details @pxref{file,, FILE}.
763 @item -storetype STORE_TYPE
764 For more details @pxref{storetype,, STORE_TYPE}.
766 @item -keystore URL
767 For more details @pxref{keystore,, URL}.
769 @item -storepass PASSWORD
770 For more details @pxref{storepass,, PASSWORD}.
772 @item -provider PROVIDER_CLASS_NAME
773 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
775 @item -v
776 For more details @pxref{verbose}.
778 @end table
780 @comment ----------------------------------------------------------------------
782 @node Command -identitydb, , Command -cacert, Add/Update Commands
783 @comment node-name, next, previous, up
784 @subsubsection @code{-identitydb} command
786 @b{NOT IMPLEMENTED YET}.
788 Use this command to import a JDK 1.1 style Identity Database.
790 @table @b
791 @item -file FILE
792 For more details @pxref{file,, FILE}.
794 @item -storetype STORE_TYPE
795 For more details @pxref{storetype,, STORE_TYPE}.
797 @item -keystore URL
798 For more details @pxref{keystore,, URL}.
800 @item -storepass PASSWORD
801 For more details @pxref{storepass,, PASSWORD}.
803 @item -provider PROVIDER_CLASS_NAME
804 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
806 @item -v
807 For more details @pxref{verbose}.
809 @end table
811 @comment ----------------------------------------------------------------------
813 @node Export Commands, Display Commands, Add/Update Commands, keytool Tool
814 @comment node-name, next, previous, up
815 @subsection Export commands
817 @menu
818 * Command -certreq::           Generate Certificate Signing Requests (CSR)
819 * Command -export::            Export a certificate in a Key Store
820 @end menu
822 @comment ----------------------------------------------------------------------
824 @node Command -certreq, Command -export, Export Commands, Export Commands
825 @comment node-name, next, previous, up
826 @subsubsection @code{-certreq} command
828 Use this command to generate a PKCS#10 @i{Certificate Signing Request} (CSR) and write it to a designated output destination. The contents of the destination should look something like the following:
830 @example
831 -----BEGIN NEW CERTIFICATE REQUEST-----
832 MI...QAwXzEUMBIGA1UEAwwLcnNuQGdudS5vcmcxGzAZBgNVBAoMElUg
833 Q2...A0GA1UEBwwGU3lkbmV5MQwwCgYDVQQIDANOU1cxCzAJBgNVBACC
835 FC...IVwNVOfQLRX+O5kAhQ/a4RTZme2L8PnpvgRwrf7Eg8D6w==
836 -----END NEW CERTIFICATE REQUEST-----
837 @end example
839 @b{IMPORTANT}: Some documentation (e.g. RSA examples) claims that the @code{Attributes} field, in the CSR is @code{OPTIONAL} while RFC-2986 implies the opposite. This implementation considers this field, by default, as @code{OPTIONAL}, unless the option @code{-attributes} is specified on the command line.
841 @table @b
842 @item -alias ALIAS
843 For more details @pxref{alias,, ALIAS}.
845 @item -sigalg ALGORITHM
846 The 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 @i{Alias}. If the private key is a @code{DSA} one, the value for the signature algorithm will be @code{SHA1withDSA}. If on the other hand the private key is an @code{RSA} one, then the tool will use @code{MD5withRSA} as the signature algorithm.
848 @item -file FILE
849 For more details @pxref{file,, FILE}.
851 @item -keypass PASSWORD
852 Use this option to specify the password which the tool will use to unlock the @i{Key Entry} associated with the designated @i{Alias}.
854 If this option is omitted, the tool will first attempt to unlock the @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
856 @item -storetype STORE_TYPE
857 For more details @pxref{storetype,, STORE_TYPE}.
859 @item -keystore URL
860 For more details @pxref{keystore,, URL}.
862 @item -storepass PASSWORD
863 For more details @pxref{storepass,, PASSWORD}.
865 @item -provider PROVIDER_CLASS_NAME
866 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
868 @item -v
869 For more details @pxref{verbose}.
871 @item -attributes
872 Use this option to force the tool to encode a @code{NULL} DER value in the CSR as the value of the @code{Attributes} field.
874 @end table
876 @comment ----------------------------------------------------------------------
878 @node Command -export, , Command -certreq, Export Commands
879 @comment node-name, next, previous, up
880 @subsubsection @code{-export} command
882 Use this command to export a certificate stored in a key store to a designated output destination, either in binary format (if the @code{-v} option is specified), or in RFC-1421 compliant encoding (if the @code{-rfc} option is specified instead).
884 @table @b
885 @item -alias ALIAS
886 For more details @pxref{alias,, ALIAS}.
888 @item -file FILE
889 For more details @pxref{file,, FILE}.
891 @item -storetype STORE_TYPE
892 For more details @pxref{storetype,, STORE_TYPE}.
894 @item -keystore URL
895 For more details @pxref{keystore,, URL}.
897 @item -storepass PASSWORD
898 For more details @pxref{storepass,, PASSWORD}.
900 @item -provider PROVIDER_CLASS_NAME
901 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
903 @item -rfc
904 Use RFC-1421 specifications when encoding the output.
906 @item -v
907 Output the certificate in binary DER encoding. This is the default output format of the command if neither @code{-rfc} nor @code{-v} options were detected on the command line. If both this option and the @code{-rfc} option are detected on the command line, the tool will opt for the RFC-1421 style encoding.
909 @end table
911 @comment ----------------------------------------------------------------------
913 @node Display Commands, Management Commands, Export Commands, keytool Tool
914 @comment node-name, next, previous, up
915 @subsection Display commands
917 @menu
918 * Command -list::              Display information about one or all Aliases
919 * Command -printcert::         Print a certificate or a certificate fingerprint
920 @end menu
922 @comment ----------------------------------------------------------------------
924 @node Command -list, Command -printcert, Display Commands, Display Commands
925 @comment node-name, next, previous, up
926 @subsubsection @code{-list} command
928 Use this command to print one or all of a key store entries to @code{STDOUT}. Usually this command will only print a @i{fingerprint} of the certificate, unless either the @code{-rfc} or the @code{-v} option is specified.
930 @table @b
931 @item -alias ALIAS
932 If this option is omitted, the tool will print ALL the entries found in the key store.
934 For more details @pxref{alias,, ALIAS}.
936 @item -storetype STORE_TYPE
937 For more details @pxref{storetype,, STORE_TYPE}.
939 @item -keystore URL
940 For more details @pxref{keystore,, URL}.
942 @item -storepass PASSWORD
943 For more details @pxref{storepass,, PASSWORD}.
945 @item -provider PROVIDER_CLASS_NAME
946 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
948 @item -rfc
949 Use RFC-1421 specifications when encoding the output.
951 @item -v
952 Output the certificate in human-readable format. If both this option and the @code{-rfc} option are detected on the command line, the tool will opt for the human-readable form and will not abort the command.
954 @end table
956 @comment ----------------------------------------------------------------------
958 @node Command -printcert, , Command -list, Display Commands
959 @comment node-name, next, previous, up
960 @subsubsection @code{-printcert} command
962 Use this command to read a certificate from a designated input source and print it to @code{STDOUT} in a human-readable form.
964 @table @b
965 @item -file FILE
966 For more details @pxref{file,, FILE}.
968 @item -v
969 For more details @pxref{verbose}.
971 @end table
973 @comment ----------------------------------------------------------------------
975 @node Management Commands, , Display Commands, keytool Tool
976 @comment node-name, next, previous, up
977 @subsection Management commands
979 @menu
980 * Command -keyclone::          Clone a Key Entry in a Key Store
981 * Command -storepasswd::       Change the password protecting a Key Store
982 * Command -keypasswd::         Change the password protecting a Key Entry
983 * Command -delete::            Remove an entry in a Key Store
984 @end menu
986 @comment ----------------------------------------------------------------------
988 @node Command -keyclone, Command -storepasswd, Management Commands, Management Commands
989 @comment node-name, next, previous, up
990 @subsubsection @code{-keyclone} command
992 Use this command to clone an existing @i{Key Entry} and store it under a new (different) @i{Alias} protecting, its private key material with possibly a new password.
994 @table @b
995 @item -alias ALIAS
996 For more details @pxref{alias,, ALIAS}.
998 @item -dest ALIAS
999 Use this option to specify the new @i{Alias} which will be used to identify the cloned copy of the @i{Key Entry}.
1001 @item -keypass PASSWORD
1002 Use this option to specify the password which the tool will use to unlock the @i{Key Entry} associated with the designated @i{Alias}.
1004 If this option is omitted, the tool will first attempt to unlock the @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
1006 @item -new PASSWORD
1007 Use this option to specify the password protecting the private key material of the newly cloned copy of the @i{Key Entry}.
1009 @item -storetype STORE_TYPE
1010 For more details @pxref{storetype,, STORE_TYPE}.
1012 @item -keystore URL
1013 For more details @pxref{keystore,, URL}.
1015 @item -storepass PASSWORD
1016 For more details @pxref{storepass,, PASSWORD}.
1018 @item -provider PROVIDER_CLASS_NAME
1019 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
1021 @item -v
1022 For more details @pxref{verbose}.
1024 @end table
1026 @comment ----------------------------------------------------------------------
1028 @node Command -storepasswd, Command -keypasswd, Command -keyclone, Management Commands
1029 @comment node-name, next, previous, up
1030 @subsubsection @code{-storepasswd} command
1032 Use this command to change the password protecting a key store.
1034 @table @b
1035 @item -new PASSWORD
1036 The new, and different, password which will be used to protect the designated key store.
1038 @item -storetype STORE_TYPE
1039 For more details @pxref{storetype,, STORE_TYPE}.
1041 @item -keystore URL
1042 For more details @pxref{keystore,, URL}.
1044 @item -storepass PASSWORD
1045 For more details @pxref{storepass,, PASSWORD}.
1047 @item -provider PROVIDER_CLASS_NAME
1048 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
1050 @item -v
1051 For more details @pxref{verbose}.
1053 @end table
1055 @comment ----------------------------------------------------------------------
1057 @node Command -keypasswd, Command -delete, Command -storepasswd, Management Commands
1058 @comment node-name, next, previous, up
1059 @subsubsection @code{-keypasswd} command
1061 Use this command to change the password protecting the private key material of a designated @i{Key Entry}.
1063 @table @b
1064 @item -alias ALIAS
1065 For more details @pxref{alias,, ALIAS}.
1067 Use this option to specify the password which the tool will use to unlock the @i{Key Entry} associated with the designated @i{Alias}.
1069 If this option is omitted, the tool will first attempt to unlock the @i{Key Entry} using the same password protecting the key store. If this fails, you will then be prompted to provide a password.
1071 @item -new PASSWORD
1072 The new, and different, password which will be used to protect the private key material of the designated @i{Key Entry}.
1074 @item -storetype STORE_TYPE
1075 For more details @pxref{storetype,, STORE_TYPE}.
1077 @item -keystore URL
1078 For more details @pxref{keystore,, URL}.
1080 @item -storepass PASSWORD
1081 For more details @pxref{storepass,, PASSWORD}.
1083 @item -provider PROVIDER_CLASS_NAME
1084 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
1086 @item -v
1087 For more details @pxref{verbose}.
1089 @end table
1091 @comment ----------------------------------------------------------------------
1093 @node Command -delete, , Command -keypasswd, Management Commands
1094 @comment node-name, next, previous, up
1095 @subsubsection @code{-delete} command
1097 Use this command to delete a designated key store entry.
1099 @table @b
1100 @item -alias ALIAS
1101 For more details @pxref{alias,, ALIAS}.
1103 @item -storetype STORE_TYPE
1104 For more details @pxref{storetype,, STORE_TYPE}.
1106 @item -keystore URL
1107 For more details @pxref{keystore,, URL}.
1109 @item -storepass PASSWORD
1110 For more details @pxref{storepass,, PASSWORD}.
1112 @item -provider PROVIDER_CLASS_NAME
1113 For more details @pxref{provider,, PROVIDER_CLASS_NAME}.
1115 @item -v
1116 For more details @pxref{verbose}.
1118 @end table
1120 @comment ----------------------------------------------------------------------
1122 @node I18N Issues, , Security Tools, Top
1123 @comment node-name, next, previous, up
1124 @chapter I18N Issues
1126 Some tools --@pxref{Security Tools}-- allow using other than the English language when prompting the User for input, and outputing messages. This chapter describes the elements used to offer this support and how they can be adapted for use with specific languages.
1128 @menu
1129 * Language Resources::         Where resources are located
1130 * Message Formats::            How messages are internationalized
1131 @end menu
1133 @comment ----------------------------------------------------------------------
1135 @node Language Resources, Message Formats, I18N Issues, I18N Issues
1136 @comment node-name, next, previous, up
1137 @section Language-specific resources
1139 The Tools use Java @code{ResourceBundle}s 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.
1141 The @i{Resource Bundles} these tools use are essentially Java @i{Properties} files consisting of a set of @i{Name/Value} pairs. The @i{Name} is the @i{Propery Name} and the @i{Value} is a substitution string that is used when the code references the associated @i{Name}. For example the following is a line in a @i{Resource Bundle} used by the @code{keytool} Tool:
1143 @example
1144 Command.23=A correct key password MUST be provided
1145 @end example
1147 When the tool needs to signal a mandatory but missing key password, it would reference the property named @code{Command.23} and the message "@kbd{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 @i{Resource Bundles} in those languages are provided.
1149 For the GNU Classpath Tools described in this Guide, the @i{Resource Bundles} are files named @file{messages[_ll[_CC[_VV]]].properties} where:
1151 @ftable @var
1152 @item ll
1153 Is the 2-letter code for the Language,
1154 @item CC
1155 Is the 2-letter code for the Region, and
1156 @item VV
1157 Is the 2-letter code for the Variant of the language.
1158 @end ftable
1160 The complete list of language codes can be found at @uref{http://ftp.ics.uci.edu/pub/ietf/http/related/iso639.txt, Code for the representation of names of languages}. A similar list for the region codes can be found at @uref{http://userpage.chemie.fu-berlin.de/diverse/doc/ISO_3166.html, ISO 3166 Codes (Countries)}.
1162 The location of the @i{Resource Bundles} for the GNU Classpath Tools is specific to each tool. The next table shows where these files are found in a standard GNU Classpath distribution:
1164 @ftable @code
1165 @item jarsigner
1166 @file{gnu/classpath/tools/jarsigner}
1167 @item keytool
1168 @file{gnu/classpath/tools/keytool}
1169 @end ftable
1171 The collection of @i{Resource Bundles} in a location act as an inverted tree with a parent-child relationship. For example suppose in the @file{gnu/classpath/tools/keytool} there are 3 message bundles named:
1173 @enumerate
1174 @item @code{messages.properties}
1175 @item @code{messages_fr.properties}
1176 @item @code{messages_fr_FR.properties}
1177 @end enumerate
1179 In the above example, bundle #1 will act as the parent of bundle #2, which in turn will act as the parent for bundle #3. This ordering is used by the Java runtime to choose which file to load based on the set Locale. For example if the Locale is @code{fr_CH}, @code{messages_fr.properties} will be used because (a) @code{messages_fr_CH.properties} does not exist, but (b) @code{messages_fr.properties} is the parent for the required bundle, and it exists. As another example, suppose the Locale was set to @code{en_AU}; then the tool will end up using @code{messages.properties} because (a) @code{messages_en_AU.properties} does not exist, (b) @code{messages_en.properties} which is the parent for the required bundle does not exist, but (c) @code{messages.properties} exists and is the root of the hierarchy.
1181 You can see from the examples above that @file{messages.properties} is the safety net that the Java runtime falls back to when failing to find a specific bunlde and its parent(s). This file is always provided with the Tool. In time, more localized versions will be included to cater for other languages.
1183 In the meantime, if you are willing to contribute localized versions of these resources, grab the @file{messages.properties} for a specific tool; translate it; save it with the appropriate language and region suffix and mail it to @code{classpath@@gnu.org}.
1185 @comment ----------------------------------------------------------------------
1187 @node Message Formats, , Language Resources, I18N Issues
1188 @comment node-name, next, previous, up
1189 @section Message formats
1191 If you open any of the @file{messages.properties} described in the previous section, you may see properties that look like so:
1193 @example
1194 Command.67=Issuer: @{0@}
1195 Command.68=Serial number: @{0,number@}
1196 Command.69=Valid from: @{0,date,full@} - @{0,time,full@}
1197 Command.70=\ \ \ \ \ until: @{0,date,full@} - @{0,time,full@}
1198 @end example
1200 These are @i{Message Formats} used by the tools to customize a text string that will then be used either as a prompt for User input or as output.
1202 If you are translating a @file{messages.properties} be careful not to alter text between curly braces.
1204 @comment ----------------------------------------------------------------------
1206 @bye