blob: 12acb2a3c916170a968416eee72ee3dea39bfa05 [file] [log] [blame]
tbell16c34dd2009-05-04 18:28:26 -07001." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
duke6e45e102007-12-01 00:00:00 +00002." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3."
4." This code is free software; you can redistribute it and/or modify it
5." under the terms of the GNU General Public License version 2 only, as
6." published by the Free Software Foundation.
7."
8." This code is distributed in the hope that it will be useful, but WITHOUT
9." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11." version 2 for more details (a copy is included in the LICENSE file that
12." accompanied this code).
13."
14." You should have received a copy of the GNU General Public License version
15." 2 along with this work; if not, write to the Free Software Foundation,
16." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17."
18." Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
19." CA 95054 USA or visit www.sun.com if you need additional information or
20." have any questions.
tbell16c34dd2009-05-04 18:28:26 -070021."
22.TH keytool 1 "04 May 2009"
23." Generated from HTML by html2man (author: Eric Armstrong)
duke6e45e102007-12-01 00:00:00 +000024
25.LP
tbell16c34dd2009-05-04 18:28:26 -070026.SH "Name"
duke6e45e102007-12-01 00:00:00 +000027keytool \- Key and Certificate Management Tool
28.LP
29.RS 3
30
31.LP
32Manages a keystore (database) of cryptographic keys, X.509 certificate chains, and trusted certificates.
33.RE
34.SH "SYNOPSIS"
35.LP
36
37.LP
38.nf
39\f3
40.fl
41\fP\f3keytool\fP [ commands ]
42.fl
43.fi
44
45.LP
46.LP
47The keytool command interface has changed in Java SE 6. See the Changes Section for a detailed description. Note that previously defined commands are still supported.
48.LP
49.SH "DESCRIPTION"
50.LP
51
52.LP
53\f3keytool\fP is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self\-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.
54.LP
55A \f2certificate\fP is a digitally signed statement from one entity (person, company, etc.), saying that the public key (and some other information) of some other entity has a particular value. (See Certificates.) When data is digitally signed, the signature can be verified to check the data integrity and authenticity. \f2Integrity\fP means that the data has not been modified or tampered with, and \f2authenticity\fP means the data indeed comes from whoever claims to have created and signed it.
56.LP
57.LP
58\f3keytool\fP also enables users to administer secret keys used in symmetric encryption/decryption (e.g. DES).
59.LP
60.LP
61\f3keytool\fP stores the keys and certificates in a \f2keystore\fP.
62.LP
63.SH "COMMAND AND OPTION NOTES"
64.LP
65
66.LP
67.LP
68The various commands and their options are listed and described below . Note:
69.LP
70.RS 3
71.TP 2
72o
73All command and option names are preceded by a minus sign (\-).
74.TP 2
75o
76The options for each command may be provided in any order.
77.TP 2
78o
79All items not italicized or in braces or square brackets are required to appear as is.
80.TP 2
81o
82Braces surrounding an option generally signify that a default value will be used if the option is not specified on the command line. Braces are also used around the \f2\-v\fP, \f2\-rfc\fP, and \f2\-J\fP options, which only have meaning if they appear on the command line (that is, they don't have any "default" values other than not existing).
83.TP 2
84o
85Brackets surrounding an option signify that the user is prompted for the value(s) if the option is not specified on the command line. (For a \f2\-keypass\fP option, if you do not specify the option on the command line, \f3keytool\fP will first attempt to use the keystore password to recover the private/secret key, and if this fails, will then prompt you for the private/secret key password.)
86.TP 2
87o
88Items in italics (option values) represent the actual values that must be supplied. For example, here is the format of the \f2\-printcert\fP command:
89.nf
90\f3
91.fl
92 keytool \-printcert {\-file \fP\f4cert_file\fP\f3} {\-v}
93.fl
94\fP
95.fi
96.LP
97When specifying a \f2\-printcert\fP command, replace \f2cert_file\fP with the actual file name, as in:
98.nf
99\f3
100.fl
101 keytool \-printcert \-file VScert.cer
102.fl
103\fP
104.fi
105.TP 2
106o
107Option values must be quoted if they contain a blank (space).
108.TP 2
109o
110The \f2\-help\fP command is the default. Thus, the command line
111.nf
112\f3
113.fl
114 keytool
115.fl
116\fP
117.fi
118is equivalent to
119.nf
120\f3
121.fl
122 keytool \-help
123.fl
124\fP
125.fi
126.RE
127
128.LP
129.SS
130Option Defaults
131.LP
132.RS 3
133
134.LP
135Below are the defaults for various option values.
136.nf
137\f3
138.fl
139\-alias "mykey"
140.fl
141
142.fl
143\-keyalg
144.fl
145 "DSA" (when using \fP\f3\-genkeypair\fP\f3)
146.fl
147 "DES" (when using \fP\f3\-genseckey\fP\f3)
148.fl
149
150.fl
151\-keysize
152.fl
153 1024 (when using \fP\f3\-genkeypair\fP\f3)
154.fl
155 56 (when using \fP\f3\-genseckey\fP\f3 and \-keyalg is "DES")
156.fl
157 168 (when using \fP\f3\-genseckey\fP\f3 and \-keyalg is "DESede")
158.fl
159
160.fl
161\-validity 90
162.fl
163
164.fl
tbell16c34dd2009-05-04 18:28:26 -0700165\-keystore the file named \fP\f4.keystore\fP\f3 in the user's home directory
duke6e45e102007-12-01 00:00:00 +0000166.fl
167
168.fl
tbell16c34dd2009-05-04 18:28:26 -0700169\-storetype the value of the "keystore.type" property in the security properties file,
duke6e45e102007-12-01 00:00:00 +0000170.fl
tbell16c34dd2009-05-04 18:28:26 -0700171 which is returned by the static \fP\f4getDefaultType\fP\f3 method in
172.fl
173 \fP\f4java.security.KeyStore\fP\f3
duke6e45e102007-12-01 00:00:00 +0000174.fl
175
176.fl
tbell16c34dd2009-05-04 18:28:26 -0700177\-file stdin if reading, stdout if writing
duke6e45e102007-12-01 00:00:00 +0000178.fl
179
180.fl
181\-protected false
182.fl
183
184.fl
185\fP
186.fi
187
188.LP
tbell16c34dd2009-05-04 18:28:26 -0700189In generating a public/private key pair, the signature algorithm (\f2\-sigalg\fP option) is derived from the algorithm of the underlying private key: If the underlying private key is of type "DSA", the \f2\-sigalg\fP option defaults to "SHA1withDSA", and if the underlying private key is of type "RSA", \f2\-sigalg\fP defaults to "SHA1withRSA". Please consult the
duke6e45e102007-12-01 00:00:00 +0000190.na
191\f2Java Cryptography Architecture API Specification & Reference\fP @
192.fi
193http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA for a full list of \f2\-keyalg\fP and \f2\-sigalg\fP you can choose from.
194.RE
195.SS
196Common Options
197.LP
198.RS 3
199
200.LP
tbell16c34dd2009-05-04 18:28:26 -0700201The \f2\-v\fP option can appear for all commands except \f2\-help\fP. If it appears, it signifies "verbose" mode; more information will be provided in the output.
duke6e45e102007-12-01 00:00:00 +0000202.LP
203There is also a \f2\-J\fP\f2javaoption\fP option that may appear for any command. If it appears, the specified \f2javaoption\fP string is passed through directly to the Java interpreter. This option should not contain any spaces. It is useful for adjusting the execution environment or memory usage. For a list of possible interpreter options, type \f2java \-h\fP or \f2java \-X\fP at the command line.
204.LP
205.LP
206These options may appear for all commands operating on a keystore:
207.LP
208.RS 3
209.TP 3
210\-storetype storetype
211This qualifier specifies the type of keystore to be instantiated.
212.TP 3
213\-keystore keystore
214The keystore location.
215.LP
216If the JKS storetype is used and a keystore file does not yet exist, then certain \f3keytool\fP commands may result in a new keystore file being created. For example, if \f2keytool \-genkeypair\fP is invoked and the \f2\-keystore\fP option is not specified, the default keystore file named \f2.keystore\fP in the user's home directory will be created if it does not already exist. Similarly, if the \f2\-keystore \fP\f2ks_file\fP option is specified but \f2ks_file\fP does not exist, then it will be created
217.LP
218Note that the input stream from the \f2\-keystore\fP option is passed to the \f2KeyStore.load\fP method. If \f2NONE\fP is specified as the URL, then a null stream is passed to the \f2KeyStore.load\fP method. \f2NONE\fP should be specified if the \f2KeyStore\fP is not file\-based (for example, if it resides on a hardware token device).
219.TP 3
220\-storepass storepass
221The password which is used to protect the integrity of the keystore.
222.LP
223\f2storepass\fP must be at least 6 characters long. It must be provided to all commands that access the keystore contents. For such commands, if a \f2\-storepass\fP option is not provided at the command line, the user is prompted for it.
224.LP
225When retrieving information from the keystore, the password is optional; if no password is given, the integrity of the retrieved information cannot be checked and a warning is displayed.
226.TP 3
227\-providerName provider_name
228Used to identify a cryptographic service provider's name when listed in the security properties file.
229.TP 3
230\-providerClass provider_class_name
231Used to specify the name of cryptographic service provider's master class file when the service provider is not listed in the security properties file.
232.TP 3
233\-providerArg provider_arg
234Used in conjunction with \f2\-providerClass\fP. Represents an optional string input argument for the constructor of \f2provider_class_name\fP.
235.TP 3
236\-protected
237Either \f2true\fP or \f2false\fP. This value should be specified as \f2true\fP if a password must be given via a protected authentication path such as a dedicated PIN reader.
tbell16c34dd2009-05-04 18:28:26 -0700238.LP
239Note: Since there are two keystores involved in \f2\-importkeystore\fP command, two options, namely, \f2\-srcprotected\fP and \f2\-destprotected\fP are provided for the source keystore and the destination keystore respectively.
240.TP 3
241\-ext {name{:critical}{=value}}
242Denotes an X.509 certificate extension. The option can be used in \f2\-genkeypair\fP and \f2\-gencert\fP to embed extensions into the certificate generated, or in \f2\-certreq\fP to show what extensions are requested in the certificate request. The option can appear multiple times. name can be a supported extension name (see below) or an arbitrary OID number. value, if provided, denotes the parameter for the extension; if omitted, denotes the default value (if defined) of the extension or the extension requires no parameter. The \f2":critical"\fP modifier, if provided, means the extension's isCritical attribute is true; otherwise, false.
243.RS 3
duke6e45e102007-12-01 00:00:00 +0000244
245.LP
tbell16c34dd2009-05-04 18:28:26 -0700246.LP
247Currently keytool supports these named extensions (case\-insensitive):
248.LP
249.LP
250.TS
251.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
252.de 35
253.ps \n(.s
254.vs \n(.vu
255.in \n(.iu
256.if \n(.u .fi
257.if \n(.j .ad
258.if \n(.j=0 .na
259..
260.nf
261.nr #~ 0
262.if n .nr #~ 0.6n
263.ds #d .d
264.if \(ts\n(.z\(ts\(ts .ds #d nl
265.fc
266.nr 33 \n(.s
267.rm 80 81
268.nr 34 \n(.lu
269.eo
270.am 81
271.br
272.di a+
273.35
274.ft \n(.f
275.ll \n(34u*1u/3u
276.if \n(.l<\n(81 .ll \n(81u
277.in 0
278The full form: "ca:{true|false}[,pathlen:<len>]"; or, <len>, a shorthand for "ca:true,pathlen:<len>"; or omitted, means "ca:true"
279.br
280.di
281.nr a| \n(dn
282.nr a- \n(dl
283..
284.ec \
285.eo
286.am 81
287.br
288.di b+
289.35
290.ft \n(.f
291.ll \n(34u*1u/3u
292.if \n(.l<\n(81 .ll \n(81u
293.in 0
294usage(,usage)*, usage can be one of digitalSignature, nonRepudiation (contentCommitment), keyEncipherment, dataEncipherment, keyAgreement, keyCertSign, cRLSign, encipherOnly, decipherOnly. Usage can be abbreviated with the first few letters (say, dig for digitalSignature) or in camel\-case style (say, dS for digitalSignature, cRLS for cRLSign), as long as no ambiguity is found. Usage is case\-insensitive.
295.br
296.di
297.nr b| \n(dn
298.nr b- \n(dl
299..
300.ec \
301.eo
302.am 81
303.br
304.di c+
305.35
306.ft \n(.f
307.ll \n(34u*1u/3u
308.if \n(.l<\n(81 .ll \n(81u
309.in 0
310usage(,usage)*, usage can be one of anyExtendedKeyUsage, serverAuth, clientAuth, codeSigning, emailProtection, timeStamping, OCSPSigning, or any OID string. Named usage can be abbreviated with the first few letters or in camel\-case style, as long as no ambiguity is found. Usage is case\-insensitive.
311.br
312.di
313.nr c| \n(dn
314.nr c- \n(dl
315..
316.ec \
317.eo
318.am 80
319.br
320.di d+
321.35
322.ft \n(.f
323.ll \n(34u*1u/3u
324.if \n(.l<\n(80 .ll \n(80u
325.in 0
326SAN or SubjectAlternativeName
327.br
328.di
329.nr d| \n(dn
330.nr d- \n(dl
331..
332.ec \
333.eo
334.am 81
335.br
336.di e+
337.35
338.ft \n(.f
339.ll \n(34u*1u/3u
340.if \n(.l<\n(81 .ll \n(81u
341.in 0
342type:value(,type:value)*, type can be EMAIL, URI, DNS, IP, or OID, value is the string format value for the type.
343.br
344.di
345.nr e| \n(dn
346.nr e- \n(dl
347..
348.ec \
349.eo
350.am 80
351.br
352.di f+
353.35
354.ft \n(.f
355.ll \n(34u*1u/3u
356.if \n(.l<\n(80 .ll \n(80u
357.in 0
358IAN or IssuerAlternativeName
359.br
360.di
361.nr f| \n(dn
362.nr f- \n(dl
363..
364.ec \
365.eo
366.am 81
367.br
368.di g+
369.35
370.ft \n(.f
371.ll \n(34u*1u/3u
372.if \n(.l<\n(81 .ll \n(81u
373.in 0
374same as SubjectAlternativeName
375.br
376.di
377.nr g| \n(dn
378.nr g- \n(dl
379..
380.ec \
381.eo
382.am 81
383.br
384.di h+
385.35
386.ft \n(.f
387.ll \n(34u*1u/3u
388.if \n(.l<\n(81 .ll \n(81u
389.in 0
390method:location\-type:location\-value (,method:location\-type:location\-value)*, method can be "timeStamping", "caRepository" or any OID. location\-type and location\-value can be any type:value supported by the SubjectAlternativeName extension.
391.br
392.di
393.nr h| \n(dn
394.nr h- \n(dl
395..
396.ec \
397.eo
398.am 80
399.br
400.di i+
401.35
402.ft \n(.f
403.ll \n(34u*1u/3u
404.if \n(.l<\n(80 .ll \n(80u
405.in 0
406AIA or AuthorityInfoAccess
407.br
408.di
409.nr i| \n(dn
410.nr i- \n(dl
411..
412.ec \
413.eo
414.am 81
415.br
416.di j+
417.35
418.ft \n(.f
419.ll \n(34u*1u/3u
420.if \n(.l<\n(81 .ll \n(81u
421.in 0
422same as SubjectInfoAccess. method can be "ocsp","caIssuers" or any OID.
423.br
424.di
425.nr j| \n(dn
426.nr j- \n(dl
427..
428.ec \
429.35
430.nf
431.ll \n(34u
432.nr 80 0
433.nr 38 \w\f3Name\fP
434.if \n(80<\n(38 .nr 80 \n(38
435.nr 38 \wBC or BasicConstraints
436.if \n(80<\n(38 .nr 80 \n(38
437.nr 38 \wKU or KeyUsage
438.if \n(80<\n(38 .nr 80 \n(38
439.nr 38 \wEKU or ExtendedkeyUsage
440.if \n(80<\n(38 .nr 80 \n(38
441.nr 38 \wSIA or SubjectInfoAccess
442.if \n(80<\n(38 .nr 80 \n(38
443.80
444.rm 80
445.nr 38 \n(d-
446.if \n(80<\n(38 .nr 80 \n(38
447.nr 38 \n(f-
448.if \n(80<\n(38 .nr 80 \n(38
449.nr 38 \n(i-
450.if \n(80<\n(38 .nr 80 \n(38
451.nr 81 0
452.nr 38 \w\f3Value\fP
453.if \n(81<\n(38 .nr 81 \n(38
454.81
455.rm 81
456.nr 38 \n(a-
457.if \n(81<\n(38 .nr 81 \n(38
458.nr 38 \n(b-
459.if \n(81<\n(38 .nr 81 \n(38
460.nr 38 \n(c-
461.if \n(81<\n(38 .nr 81 \n(38
462.nr 38 \n(e-
463.if \n(81<\n(38 .nr 81 \n(38
464.nr 38 \n(g-
465.if \n(81<\n(38 .nr 81 \n(38
466.nr 38 \n(h-
467.if \n(81<\n(38 .nr 81 \n(38
468.nr 38 \n(j-
469.if \n(81<\n(38 .nr 81 \n(38
470.35
471.nf
472.ll \n(34u
473.nr 38 1n
474.nr 79 0
475.nr 40 \n(79+(0*\n(38)
476.nr 80 +\n(40
477.nr 41 \n(80+(3*\n(38)
478.nr 81 +\n(41
479.nr TW \n(81
480.if t .if \n(TW>\n(.li .tm Table at line 288 file Input is too wide - \n(TW units
481.fc  
482.nr #T 0-1
483.nr #a 0-1
484.eo
485.de T#
486.ds #d .d
487.if \(ts\n(.z\(ts\(ts .ds #d nl
488.mk ##
489.nr ## -1v
490.ls 1
491.ls
492..
493.ec
494.ta \n(80u \n(81u
495.nr 31 \n(.f
496.nr 35 1m
497\&\h'|\n(40u'\f3Name\fP\h'|\n(41u'\f3Value\fP
498.ne \n(a|u+\n(.Vu
499.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
500.ta \n(80u \n(81u
501.nr 31 \n(.f
502.nr 35 1m
503\&\h'|\n(40u'BC or BasicConstraints\h'|\n(41u'
504.mk ##
505.nr 31 \n(##
506.sp |\n(##u-1v
507.nr 37 \n(41u
508.in +\n(37u
509.a+
510.in -\n(37u
511.mk 32
512.if \n(32>\n(31 .nr 31 \n(32
513.sp |\n(31u
514.ne \n(b|u+\n(.Vu
515.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
516.ta \n(80u \n(81u
517.nr 31 \n(.f
518.nr 35 1m
519\&\h'|\n(40u'KU or KeyUsage\h'|\n(41u'
520.mk ##
521.nr 31 \n(##
522.sp |\n(##u-1v
523.nr 37 \n(41u
524.in +\n(37u
525.b+
526.in -\n(37u
527.mk 32
528.if \n(32>\n(31 .nr 31 \n(32
529.sp |\n(31u
530.ne \n(c|u+\n(.Vu
531.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
532.ta \n(80u \n(81u
533.nr 31 \n(.f
534.nr 35 1m
535\&\h'|\n(40u'EKU or ExtendedkeyUsage\h'|\n(41u'
536.mk ##
537.nr 31 \n(##
538.sp |\n(##u-1v
539.nr 37 \n(41u
540.in +\n(37u
541.c+
542.in -\n(37u
543.mk 32
544.if \n(32>\n(31 .nr 31 \n(32
545.sp |\n(31u
546.ne \n(d|u+\n(.Vu
547.ne \n(e|u+\n(.Vu
548.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
549.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
550.ta \n(80u \n(81u
551.nr 31 \n(.f
552.nr 35 1m
553\&\h'|\n(40u'\h'|\n(41u'
554.mk ##
555.nr 31 \n(##
556.sp |\n(##u-1v
557.nr 37 \n(40u
558.in +\n(37u
559.d+
560.in -\n(37u
561.mk 32
562.if \n(32>\n(31 .nr 31 \n(32
563.sp |\n(##u-1v
564.nr 37 \n(41u
565.in +\n(37u
566.e+
567.in -\n(37u
568.mk 32
569.if \n(32>\n(31 .nr 31 \n(32
570.sp |\n(31u
571.ne \n(f|u+\n(.Vu
572.ne \n(g|u+\n(.Vu
573.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
574.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
575.ta \n(80u \n(81u
576.nr 31 \n(.f
577.nr 35 1m
578\&\h'|\n(40u'\h'|\n(41u'
579.mk ##
580.nr 31 \n(##
581.sp |\n(##u-1v
582.nr 37 \n(40u
583.in +\n(37u
584.f+
585.in -\n(37u
586.mk 32
587.if \n(32>\n(31 .nr 31 \n(32
588.sp |\n(##u-1v
589.nr 37 \n(41u
590.in +\n(37u
591.g+
592.in -\n(37u
593.mk 32
594.if \n(32>\n(31 .nr 31 \n(32
595.sp |\n(31u
596.ne \n(h|u+\n(.Vu
597.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
598.ta \n(80u \n(81u
599.nr 31 \n(.f
600.nr 35 1m
601\&\h'|\n(40u'SIA or SubjectInfoAccess\h'|\n(41u'
602.mk ##
603.nr 31 \n(##
604.sp |\n(##u-1v
605.nr 37 \n(41u
606.in +\n(37u
607.h+
608.in -\n(37u
609.mk 32
610.if \n(32>\n(31 .nr 31 \n(32
611.sp |\n(31u
612.ne \n(i|u+\n(.Vu
613.ne \n(j|u+\n(.Vu
614.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
615.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
616.ta \n(80u \n(81u
617.nr 31 \n(.f
618.nr 35 1m
619\&\h'|\n(40u'\h'|\n(41u'
620.mk ##
621.nr 31 \n(##
622.sp |\n(##u-1v
623.nr 37 \n(40u
624.in +\n(37u
625.i+
626.in -\n(37u
627.mk 32
628.if \n(32>\n(31 .nr 31 \n(32
629.sp |\n(##u-1v
630.nr 37 \n(41u
631.in +\n(37u
632.j+
633.in -\n(37u
634.mk 32
635.if \n(32>\n(31 .nr 31 \n(32
636.sp |\n(31u
637.fc
638.nr T. 1
639.T# 1
640.35
641.rm a+
642.rm b+
643.rm c+
644.rm d+
645.rm e+
646.rm f+
647.rm g+
648.rm h+
649.rm i+
650.rm j+
651.TE
652.if \n-(b.=0 .nr c. \n(.c-\n(d.-38
653
654.LP
655.LP
656For name as OID, value is the HEX dumped DER encoding of the extnValue for the extension excluding the OCTET STRING type and length bytes. Any extra character other than standard HEX numbers (0\-9, a\-f, A\-F) are ignored in the HEX string. Therefore, both \f2"01:02:03:04"\fP and \f2"01020304"\fP are accepted as identical values. If there's no value, the extension has an empty value field then.
657.LP
658.LP
659A special name \f2"honored"\fP, used in \-gencert only, denotes how the extensions included in the certificate request should be honored. The value for this name is a comma\-seperated list of \f2"all"\fP (all requested extensions are honored), \f2"name{:[critical|non\-critical]}"\fP (the named extension is honored, but using a different isCritical attribute) and \f2"\-name"\fP (used with all, denotes an exception). Requested extensions are not honored by default.
660.LP
661.LP
662If, besides the \-ext honored option, another named or OID \-ext option is provided, this extension will be added to those already honored. However, if this name (or OID) also appears in the honored value, its value and criticality overrides the one in the request.
663.LP
664.LP
665The subjectKeyIdentifier extension is always created. For non self\-signed certificates, the authorityKeyIdentifier is always created.
666.LP
667.RE
668.RE
duke6e45e102007-12-01 00:00:00 +0000669.RE
670.SH "COMMANDS"
671.LP
672
673.LP
674.SS
675Creating or Adding Data to the Keystore
676.LP
677.RS 3
678
679.LP
680.RS 3
681.TP 3
tbell16c34dd2009-05-04 18:28:26 -0700682\-gencert {\-infile infile} {\-outfile outfile} {\-ext ext}* {\-rfc} {\-alias alias} {\-sigalg sigalg} {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] [\-keypass keypass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
683.LP
684Generates a certificate as a response to a certificate request file (which can be created by the \f2keytool \-certreq\fP command). The command reads the request from infile (if omitted, from the standard input), signs it using alias's private key, and output the X.509 certificate into outfile (if omitted, to the standard output). If \f2\-rfc\fP is specified, output format is BASE64\-encoded PEM; otherwise, a binary DER is created.
685.LP
686\f2sigalg\fP specifies the algorithm that should be used to sign the certificate. valDays tells the number of days for which the certificate should be considered valid.
687.LP
688\f2ext\fP shows what X.509 extensions will be embedded in the certificate. Read Common Options for the grammar of \f2\-ext\fP.
689.TP 3
690\-genkeypair {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} {\-sigalg sigalg} [\-dname dname] [\-keypass keypass] {\-startdate value} {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
duke6e45e102007-12-01 00:00:00 +0000691.LP
692Generates a key pair (a public key and associated private key). Wraps the public key into an X.509 v3 self\-signed certificate, which is stored as a single\-element certificate chain. This certificate chain and the private key are stored in a new keystore entry identified by \f2alias\fP.
693.LP
694\f2keyalg\fP specifies the algorithm to be used to generate the key pair, and \f2keysize\fP specifies the size of each key to be generated. \f2sigalg\fP specifies the algorithm that should be used to sign the self\-signed certificate; this algorithm must be compatible with \f2keyalg\fP.
695.LP
696\f2dname\fP specifies the X.500 Distinguished Name to be associated with \f2alias\fP, and is used as the \f2issuer\fP and \f2subject\fP fields in the self\-signed certificate. If no distinguished name is provided at the command line, the user will be prompted for one.
697.LP
698\f2keypass\fP is a password used to protect the private key of the generated key pair. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
699.LP
tbell16c34dd2009-05-04 18:28:26 -0700700\f2startdate\fP specifies the issue time of the certificate, also known as the "Not Before" value of the X.509 certificate's Validity field.
701.RS 3
702
duke6e45e102007-12-01 00:00:00 +0000703.LP
tbell16c34dd2009-05-04 18:28:26 -0700704.LP
705The option value can be set in one of these two forms:
706.LP
707.RS 3
708.TP 3
7091.
710.LP
711([+\-]\f2nnn\fP[ymdHMS])+
712.TP 3
7132.
714.LP
715[yyyy/mm/dd] [HH:MM:SS]
716.RE
717
718.LP
719.LP
720With the first form, the issue time is shifted by the specified value from the current time. The value is a concatenation of a sequence of sub values. Inside each sub value, the plus sign ("+") means shifting forward, and the minus sign ("\-") means shifting backward. The time to be shifted is \f2nnn\fP units of years, months, days, hours, minutes, or seconds (denoted by a single character of "y", "m", "d", "H", "M", or "S" respectively). The exact value of the issue time is calculated using the \f2java.util.GregorianCalendar.add(int field, int amount)\fP method on each sub value, from left to right. For example, by specifying \f2"\-startdate \-1y+1m\-1d"\fP, the issue time will be:
721.LP
722.RS 3
723
724.LP
725.nf
726\f3
727.fl
728 Calendar c = new GregorianCalendar();
729.fl
730 c.add(Calendar.YEAR, \-1);
731.fl
732 c.add(Calendar.MONTH, 1);
733.fl
734 c.add(Calendar.DATE, \-1);
735.fl
736 return c.getTime()
737.fl
738\fP
739.fi
740.RE
741
742.LP
743.LP
744With the second form, the user sets the exact issue time in two parts, year/month/day and hour:minute:second (using the local timezone). The user may provide only one part, which means the other part is the same as the current date (or time). User must provide the exact number of digits as shown in the format definition (padding with 0 if shorter). When both the date and time are provided, there is one (and only one) space character between the two parts. The hour should always be provided in 24 hour format.
745.LP
746.LP
747When the option is not provided, the start date is the current time. The option can be provided at most once.
748.LP
749.RE
750.LP
751\f2valDays\fP specifies the number of days (starting at the date specified by \f2\-startdate\fP, or the current date if \f2\-startdate\fP is not specified) for which the certificate should be considered valid.
752.LP
753This command was named \f2\-genkey\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarity the new name, \f2\-genkeypair\fP, is preferred going forward.
duke6e45e102007-12-01 00:00:00 +0000754.TP 3
755\-genseckey {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
756.LP
757Generates a secret key and stores it in a new \f2KeyStore.SecretKeyEntry\fP identified by \f2alias\fP.
758.LP
759\f2keyalg\fP specifies the algorithm to be used to generate the secret key, and \f2keysize\fP specifies the size of the key to be generated. \f2keypass\fP is a password used to protect the secret key. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
760.TP 3
761\-importcert {\-alias alias} {\-file cert_file} [\-keypass keypass] {\-noprompt} {\-trustcacerts} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
762.LP
tbell16c34dd2009-05-04 18:28:26 -0700763Reads the certificate or certificate chain (where the latter is supplied in a PKCS#7 formatted reply or a sequence of X.509 certificates) from the file \f2cert_file\fP, and stores it in the keystore entry identified by \f2alias\fP. If no file is given, the certificate or certificate chain is read from stdin.
duke6e45e102007-12-01 00:00:00 +0000764.LP
765\f3keytool\fP can import X.509 v1, v2, and v3 certificates, and PKCS#7 formatted certificate chains consisting of certificates of that type. The data to be imported must be provided either in binary encoding format, or in printable encoding format (also known as Base64 encoding) as defined by the Internet RFC 1421 standard. In the latter case, the encoding must be bounded at the beginning by a string that starts with "\-\-\-\-\-BEGIN", and bounded at the end by a string that starts with "\-\-\-\-\-END".
766.LP
767You import a certificate for two reasons:
768.RS 3
769.TP 3
7701.
771to add it to the list of trusted certificates, or
772.TP 3
7732.
774to import a certificate reply received from a CA as the result of submitting a Certificate Signing Request (see the \-certreq command) to that CA.
775.RE
776.LP
777Which type of import is intended is indicated by the value of the \f2\-alias\fP option:
778.RS 3
779.TP 3
7801.
781\f3If the alias does not point to a key entry\fP, then \f3keytool\fP assumes you are adding a trusted certificate entry. In this case, the alias should not already exist in the keystore. If the alias does already exist, then \f3keytool\fP outputs an error, since there is already a trusted certificate for that alias, and does not import the certificate.
782.TP 3
7832.
784\f3If the alias points to a key entry\fP, then \f3keytool\fP assumes you are importing a certificate reply.
785.RE
786\f3Importing a New Trusted Certificate\fP
787.RS 3
duke6e45e102007-12-01 00:00:00 +0000788.LP
789Before adding the certificate to the keystore, \f3keytool\fP tries to verify it by attempting to construct a chain of trust from that certificate to a self\-signed certificate (belonging to a root CA), using trusted certificates that are already available in the keystore.
790.LP
791.LP
792If the \f2\-trustcacerts\fP option has been specified, additional certificates are considered for the chain of trust, namely the certificates in a file named "cacerts".
793.LP
794.LP
795If \f3keytool\fP fails to establish a trust path from the certificate to be imported up to a self\-signed certificate (either from the keystore or the "cacerts" file), the certificate information is printed out, and the user is prompted to verify it, e.g., by comparing the displayed certificate fingerprints with the fingerprints obtained from some other (trusted) source of information, which might be the certificate owner himself/herself. Be very careful to ensure the certificate is valid prior to importing it as a "trusted" certificate! \-\- see WARNING Regarding Importing Trusted Certificates. The user then has the option of aborting the import operation. If the \f2\-noprompt\fP option is given, however, there will be no interaction with the user.
796.LP
797.RE
798\f3Importing a Certificate Reply\fP
799.RS 3
800.LP
801When importing a certificate reply, the certificate reply is validated using trusted certificates from the keystore, and optionally using the certificates configured in the "cacerts" keystore file (if the \f2\-trustcacerts\fP option was specified).
802.LP
803.LP
804The methods of determining whether the certificate reply is trusted are described in the following:
805.LP
806.RS 3
807.TP 2
808o
809\f3If the reply is a single X.509 certificate\fP, \f3keytool\fP attempts to establish a trust chain, starting at the certificate reply and ending at a self\-signed certificate (belonging to a root CA). The certificate reply and the hierarchy of certificates used to authenticate the certificate reply form the new certificate chain of \f2alias\fP. If a trust chain cannot be established, the certificate reply is not imported. In this case, \f3keytool\fP does not print out the certificate and prompt the user to verify it, because it is very hard (if not impossible) for a user to determine the authenticity of the certificate reply.
810.TP 2
811o
tbell16c34dd2009-05-04 18:28:26 -0700812\f3If the reply is a PKCS#7 formatted certificate chain or a sequence of X.509 certificates\fP, the chain is ordered with the user certificate first followed by zero or more CA certificates. If the chain ends with a self\-signed root CA certificate and \f2\-trustcacerts\fP option was specified, \f3keytool\fP will attempt to match it with any of the trusted certificates in the keystore or the "cacerts" keystore file. If the chain does not end with a self\-signed root CA certificate and the \f2\-trustcacerts\fP option was specified, \f3keytool\fP will try to find one from the trusted certificates in the keystore or the "cacerts" keystore file and add it to the end of the chain. If the certificate is not found and \f2\-noprompt\fP option is not specified, the information of the last certificate in the chain is printed out, and the user is prompted to verify it.
duke6e45e102007-12-01 00:00:00 +0000813.RE
814
815.LP
816.LP
817If the public key in the certificate reply matches the user's public key already stored with under \f2alias\fP, the old certificate chain is replaced with the new certificate chain in the reply. The old chain can only be replaced if a valid \f2keypass\fP, the password used to protect the private key of the entry, is supplied. If no password is provided, and the private key password is different from the keystore password, the user is prompted for it.
818.LP
819.RE
820.LP
821This command was named \f2\-import\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-importcert\fP, is preferred going forward.
822.TP 3
823\-importkeystore \-srckeystore srckeystore \-destkeystore destkeystore {\-srcstoretype srcstoretype} {\-deststoretype deststoretype} [\-srcstorepass srcstorepass] [\-deststorepass deststorepass] {\-srcprotected} {\-destprotected} {\-srcalias srcalias {\-destalias destalias} [\-srckeypass srckeypass] [\-destkeypass destkeypass] } {\-noprompt} {\-srcProviderName src_provider_name} {\-destProviderName dest_provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
824.LP
825Imports a single entry or all entries from a source keystore to a destination keystore.
826.LP
827When the \f2srcalias\fP option is provided, the command imports the single entry identified by the alias to the destination keystore. If a destination alias is not provided with \f2destalias\fP, then \f2srcalias\fP is used as the destination alias. If the source entry is protected by a password, \f2srckeypass\fP will be used to recover the entry. If \f2srckeypass\fP is not provided, then \f3keytool\fP will attempt to use \f2srcstorepass\fP to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. The destination entry will be protected using \f2destkeypass\fP. If \f2destkeypass\fP is not provided, the destination entry will be protected with the source entry password.
828.LP
829If the \f2srcalias\fP option is not provided, then all entries in the source keystore are imported into the destination keystore. Each destination entry will be stored under the alias from the source entry. If the source entry is protected by a password, \f2srcstorepass\fP will be used to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. If a source keystore entry type is not supported in the destination keystore, or if an error occurs while storing an entry into the destination keystore, the user will be prompted whether to skip the entry and continue, or to quit. The destination entry will be protected with the source entry password.
830.LP
831If the destination alias already exists in the destination keystore, the user is prompted to either overwrite the entry, or to create a new entry under a different alias name.
832.LP
833Note that if \f2\-noprompt\fP is provided, the user will not be prompted for a new destination alias. Existing entries will automatically be overwritten with the destination alias name. Finally, entries that can not be imported are automatically skipped and a warning is output.
tbell16c34dd2009-05-04 18:28:26 -0700834.TP 3
835\-printcertreq {\-file file}
836.LP
837Prints the content of a PKCS #10 format certificate request, which can be generated by the keytool \-certreq command. The command reads the request from file; if omitted, from the standard input.
duke6e45e102007-12-01 00:00:00 +0000838.RE
839.RE
840.SS
841Exporting Data
842.LP
843.RS 3
844
845.LP
846.RS 3
847.TP 3
848\-certreq {\-alias alias} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
849.LP
850Generates a Certificate Signing Request (CSR), using the PKCS#10 format.
851.LP
852A CSR is intended to be sent to a certificate authority (CA). The CA will authenticate the certificate requestor (usually off\-line) and will return a certificate or certificate chain, used to replace the existing certificate chain (which initially consists of a self\-signed certificate) in the keystore.
853.LP
854The private key and X.500 Distinguished Name associated with \f2alias\fP are used to create the PKCS#10 certificate request. In order to access the private key, the appropriate password must be provided, since private keys are protected in the keystore with a password. If \f2keypass\fP is not provided at the command line, and is different from the password used to protect the integrity of the keystore, the user is prompted for it.
855.LP
856\f2sigalg\fP specifies the algorithm that should be used to sign the CSR.
857.LP
858The CSR is stored in the file \f2certreq_file\fP. If no file is given, the CSR is output to stdout.
859.LP
860Use the \f2importcert\fP command to import the response from the CA.
861.TP 3
862\-exportcert {\-alias alias} {\-file cert_file} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-rfc} {\-v} {\-protected} {\-Jjavaoption}
863.LP
864Reads (from the keystore) the certificate associated with \f2alias\fP, and stores it in the file \f2cert_file\fP.
865.LP
866If no file is given, the certificate is output to stdout.
867.LP
868The certificate is by default output in binary encoding, but will instead be output in the printable encoding format, as defined by the Internet RFC 1421 standard, if the \f2\-rfc\fP option is specified.
869.LP
870If \f2alias\fP refers to a trusted certificate, that certificate is output. Otherwise, \f2alias\fP refers to a key entry with an associated certificate chain. In that case, the first certificate in the chain is returned. This certificate authenticates the public key of the entity addressed by \f2alias\fP.
871.LP
872This command was named \f2\-export\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-exportcert\fP, is preferred going forward.
873.RE
874
875.LP
876.RE
877.SS
878Displaying Data
879.LP
880.RS 3
881
882.LP
883.RS 3
884.TP 3
885\-list {\-alias alias} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v | \-rfc} {\-protected} {\-Jjavaoption}
886.LP
887Prints (to stdout) the contents of the keystore entry identified by \f2alias\fP. If no alias is specified, the contents of the entire keystore are printed.
888.LP
tbell16c34dd2009-05-04 18:28:26 -0700889This command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, with additional information such as the owner, issuer, serial number, and any extensions. If the \f2\-rfc\fP option is specified, certificate contents are printed using the printable encoding format, as defined by the Internet RFC 1421 standard
duke6e45e102007-12-01 00:00:00 +0000890.LP
891You cannot specify both \f2\-v\fP and \f2\-rfc\fP.
892.TP 3
tbell16c34dd2009-05-04 18:28:26 -0700893\-printcert {\-file cert_file | \-sslserver host[:port]} {\-rfc} {\-v} {\-Jjavaoption}
duke6e45e102007-12-01 00:00:00 +0000894.LP
895.LP
tbell16c34dd2009-05-04 18:28:26 -0700896If \f2\-rfc\fP is specified, keytool prints the certificate in PEM mode as defined by the Internet RFC 1421 standard.
duke6e45e102007-12-01 00:00:00 +0000897.LP
tbell16c34dd2009-05-04 18:28:26 -0700898If the certificate is read from a file or stdin, it may be either binary encoded or in printable encoding format, as defined by the Internet RFC 1421 standard
899.LP
900If the SSL server is behind a firewall, \f2\-J\-Dhttps.proxyHost=proxyhost\fP and \f2\-J\-Dhttps.proxyPort=proxyport\fP can be specified on the command line for proxy tunneling. See the JSSE Reference Guide for more information.
901.LP
902\f3Note\fP: This option can be used independently of a keystore.
duke6e45e102007-12-01 00:00:00 +0000903.RE
904
905.LP
906.RE
907.SS
908Managing the Keystore
909.LP
910.RS 3
911
912.LP
913.RS 3
914.TP 3
915\-storepasswd [\-new new_storepass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
916.LP
917Changes the password used to protect the integrity of the keystore contents. The new password is \f2new_storepass\fP, which must be at least 6 characters long.
918.TP 3
919\-keypasswd {\-alias alias} [\-keypass old_keypass] [\-new new_keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
920.LP
921Changes the password under which the private/secret key identified by \f2alias\fP is protected, from \f2old_keypass\fP to \f2new_keypass\fP, which must be at least 6 characters long.
922.LP
923If the \f2\-keypass\fP option is not provided at the command line, and the key password is different from the keystore password, the user is prompted for it.
924.LP
925If the \f2\-new\fP option is not provided at the command line, the user is prompted for it.
926.TP 3
927\-delete [\-alias alias] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
928.LP
929Deletes from the keystore the entry identified by \f2alias\fP. The user is prompted for the alias, if no alias is provided at the command line.
930.TP 3
931\-changealias {\-alias alias} [\-destalias destalias] [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
932.LP
933Move an existing keystore entry from the specified \f2alias\fP to a new alias, \f2destalias\fP. If no destination alias is provided, the command will prompt for one. If the original entry is protected with an entry password, the password can be supplied via the "\-keypass" option. If no key password is provided, the \f2storepass\fP (if given) will be attempted first. If that attempt fails, the user will be prompted for a password.
934.RE
935
936.LP
937.RE
938.SS
939Getting Help
940.LP
941.RS 3
942
943.LP
944.RS 3
945.TP 3
946\-help
947.LP
948Lists the basic commands and their options.
949.RE
950
951.LP
952.RE
953.SH "EXAMPLES"
954.LP
955
956.LP
957.LP
958Suppose you want to create a keystore for managing your public/private key pair and certificates from entities you trust.
959.LP
960.SS
961Generating Your Key Pair
962.LP
963.RS 3
964
965.LP
966.LP
967The first thing you need to do is create a keystore and generate the key pair. You could use a command such as the following:
968.LP
969.nf
970\f3
971.fl
972 keytool \-genkeypair \-dname "cn=Mark Jones, ou=JavaSoft, o=Sun, c=US"
973.fl
974 \-alias business \-keypass kpi135 \-keystore /working/mykeystore
975.fl
976 \-storepass ab987c \-validity 180
977.fl
978\fP
979.fi
980
981.LP
982.LP
983(Please note: This must be typed as a single line. Multiple lines are used in the examples just for legibility purposes.)
984.LP
985.LP
986This command creates the keystore named "mykeystore" in the "working" directory (assuming it doesn't already exist), and assigns it the password "ab987c". It generates a public/private key pair for the entity whose "distinguished name" has a common name of "Mark Jones", organizational unit of "JavaSoft", organization of "Sun" and two\-letter country code of "US". It uses the default "DSA" key generation algorithm to create the keys, both 1024 bits long.
987.LP
988.LP
989It creates a self\-signed certificate (using the default "SHA1withDSA" signature algorithm) that includes the public key and the distinguished name information. This certificate will be valid for 180 days, and is associated with the private key in a keystore entry referred to by the alias "business". The private key is assigned the password "kpi135".
990.LP
991.LP
992The command could be significantly shorter if option defaults were accepted. As a matter of fact, no options are required; defaults are used for unspecified options that have default values, and you are prompted for any required values. Thus, you could simply have the following:
993.LP
994.nf
995\f3
996.fl
997 keytool \-genkeypair
998.fl
999\fP
1000.fi
1001
1002.LP
1003In this case, a keystore entry with alias "mykey" is created, with a newly\-generated key pair and a certificate that is valid for 90 days. This entry is placed in the keystore named ".keystore" in your home directory. (The keystore is created if it doesn't already exist.) You will be prompted for the distinguished name information, the keystore password, and the private key password.
1004.LP
1005The rest of the examples assume you executed the \f2\-genkeypair\fP command without options specified, and that you responded to the prompts with values equal to those given in the first \f2\-genkeypair\fP command, above (a private key password of "kpi135", etc.)
1006.LP
1007.RE
1008.SS
1009Requesting a Signed Certificate from a Certification Authority
1010.LP
1011.RS 3
1012
1013.LP
1014.LP
1015So far all we've got is a self\-signed certificate. A certificate is more likely to be trusted by others if it is signed by a Certification Authority (CA). To get such a signature, you first generate a Certificate Signing Request (CSR), via the following:
1016.LP
1017.nf
1018\f3
1019.fl
1020 keytool \-certreq \-file MarkJ.csr
1021.fl
1022\fP
1023.fi
1024
1025.LP
1026This creates a CSR (for the entity identified by the default alias "mykey") and puts the request in the file named "MarkJ.csr". Submit this file to a CA, such as VeriSign, Inc. The CA will authenticate you, the requestor (usually off\-line), and then will return a certificate, signed by them, authenticating your public key. (In some cases, they will actually return a chain of certificates, each one authenticating the public key of the signer of the previous certificate in the chain.)
1027.RE
1028.SS
1029Importing a Certificate for the CA
1030.LP
1031.RS 3
1032
1033.LP
1034.LP
1035You need to replace your self\-signed certificate with a certificate chain, where each certificate in the chain authenticates the public key of the signer of the previous certificate in the chain, up to a "root" CA.
1036.LP
1037.LP
1038Before you import the certificate reply from a CA, you need one or more "trusted certificates" in your keystore or in the \f2cacerts\fP keystore file (which is described in importcert command):
1039.LP
1040.RS 3
1041.TP 2
1042o
1043If the certificate reply is a certificate chain, you just need the top certificate of the chain (that is, the "root" CA certificate authenticating that CA's public key).
1044.TP 2
1045o
1046If the certificate reply is a single certificate, you need a certificate for the issuing CA (the one that signed it), and if that certificate is not self\-signed, you need a certificate for its signer, and so on, up to a self\-signed "root" CA certificate.
1047.RE
1048
1049.LP
1050.LP
1051The "cacerts" keystore file ships with five VeriSign root CA certificates, so you probably won't need to import a VeriSign certificate as a trusted certificate in your keystore. But if you request a signed certificate from a different CA, and a certificate authenticating that CA's public key hasn't been added to "cacerts", you will need to import a certificate from the CA as a "trusted certificate".
1052.LP
1053.LP
1054A certificate from a CA is usually either self\-signed, or signed by another CA (in which case you also need a certificate authenticating that CA's public key). Suppose company ABC, Inc., is a CA, and you obtain a file named "ABCCA.cer" that is purportedly a self\-signed certificate from ABC, authenticating that CA's public key.
1055.LP
1056.LP
1057Be very careful to ensure the certificate is valid prior to importing it as a "trusted" certificate! View it first (using the \f3keytool\fP \f2\-printcert\fP command, or the \f3keytool\fP \f2\-importcert\fP command without the \f2\-noprompt\fP option), and make sure that the displayed certificate fingerprint(s) match the expected ones. You can call the person who sent the certificate, and compare the fingerprint(s) that you see with the ones that they show (or that a secure public key repository shows). Only if the fingerprints are equal is it guaranteed that the certificate has not been replaced in transit with somebody else's (for example, an attacker's) certificate. If such an attack took place, and you did not check the certificate before you imported it, you would end up trusting anything the attacker has signed.
1058.LP
1059.LP
1060If you trust that the certificate is valid, then you can add it to your keystore via the following:
1061.LP
1062.nf
1063\f3
1064.fl
1065 keytool \-importcert \-alias abc \-file ABCCA.cer
1066.fl
1067\fP
1068.fi
1069
1070.LP
1071This creates a "trusted certificate" entry in the keystore, with the data from the file "ABCCA.cer", and assigns the alias "abc" to the entry.
1072.RE
1073.SS
1074Importing the Certificate Reply from the CA
1075.LP
1076.RS 3
1077
1078.LP
1079.LP
1080Once you've imported a certificate authenticating the public key of the CA you submitted your certificate signing request to (or there's already such a certificate in the "cacerts" file), you can import the certificate reply and thereby replace your self\-signed certificate with a certificate chain. This chain is the one returned by the CA in response to your request (if the CA reply is a chain), or one constructed (if the CA reply is a single certificate) using the certificate reply and trusted certificates that are already available in the keystore where you import the reply or in the "cacerts" keystore file.
1081.LP
1082.LP
1083For example, suppose you sent your certificate signing request to VeriSign. You can then import the reply via the following, which assumes the returned certificate is named "VSMarkJ.cer":
1084.LP
1085.nf
1086\f3
1087.fl
1088 keytool \-importcert \-trustcacerts \-file VSMarkJ.cer
1089.fl
1090\fP
1091.fi
1092.RE
1093
1094.LP
1095.SS
1096Exporting a Certificate Authenticating Your Public Key
1097.LP
1098.RS 3
1099
1100.LP
tbell16c34dd2009-05-04 18:28:26 -07001101Suppose you have used the jarsigner(1) tool to sign a Java ARchive (JAR) file. Clients that want to use the file will want to authenticate your signature.
duke6e45e102007-12-01 00:00:00 +00001102.LP
1103One way they can do this is by first importing your public key certificate into their keystore as a "trusted" entry. You can export the certificate and supply it to your clients. As an example, you can copy your certificate to a file named \f2MJ.cer\fP via the following, assuming the entry is aliased by "mykey":
1104.LP
1105.nf
1106\f3
1107.fl
1108 keytool \-exportcert \-alias mykey \-file MJ.cer
1109.fl
1110\fP
1111.fi
1112
1113.LP
1114Given that certificate, and the signed JAR file, a client can use the \f3jarsigner\fP tool to authenticate your signature.
1115.RE
1116.SS
1117Importing Keystore
1118.LP
1119.RS 3
1120
1121.LP
1122.LP
1123The command "importkeystore" is used to import an entire keystore into another keystore, which means all entries from the source keystore, including keys and certificates, are all imported to the destination keystore within a single command. You can use this command to import entries from a different type of keystore. During the import, all new entries in the destination keystore will have the same alias names and protection passwords (for secret keys and private keys). If \f3keytool\fP has difficulties recover the private keys or secret keys from the source keystore, it will prompt you for a password. If it detects alias duplication, it will ask you for a new one, you can specify a new alias or simply allow \f3keytool\fP to overwrite the existing one.
1124.LP
1125.LP
1126For example, to import entries from a normal JKS type keystore key.jks into a PKCS #11 type hardware based keystore, you can use the command:
1127.LP
1128.nf
1129\f3
1130.fl
1131keytool \-importkeystore
1132.fl
1133 \-srckeystore key.jks \-destkeystore NONE
1134.fl
1135 \-srcstoretype JKS \-deststoretype PKCS11
1136.fl
1137 \-srcstorepass changeit \-deststorepass topsecret
1138.fl
1139\fP
1140.fi
1141
1142.LP
1143.LP
1144The importkeystore command can also be used to import a single entry from a source keystore to a destination keystore. In this case, besides the options you see in the above example, you need to specify the alias you want to import. With the srcalias option given, you can also specify the desination alias name in the command line, as well as protection password for a secret/private key and the destination protection password you want. In this way, you can issue a \f3keytool\fP command that will never ask you a question. This makes it very convenient to include a \f3keytool\fP command into a script file, like this:
1145.LP
1146.nf
1147\f3
1148.fl
1149keytool \-importkeystore
1150.fl
1151 \-srckeystore key.jks \-destkeystore NONE
1152.fl
1153 \-srcstoretype JKS \-deststoretype PKCS11
1154.fl
1155 \-srcstorepass changeit \-deststorepass topsecret
1156.fl
1157 \-srcalias myprivatekey \-destalias myoldprivatekey
1158.fl
1159 \-srckeypass oldkeypass \-destkeypass mynewkeypass
1160.fl
1161 \-noprompt
1162.fl
1163\fP
1164.fi
1165.RE
1166
1167.LP
tbell16c34dd2009-05-04 18:28:26 -07001168.SS
1169Generating Certificates for a typical SSL Server
1170.LP
1171.RS 3
1172
1173.LP
1174.LP
1175Keytool commands to generate keypairs and certificates for three entities, namely, Root CA (root), Intermadiate CA (ca), and SSL server (server) are as follows:
1176.LP
1177.nf
1178\f3
1179.fl
1180keytool \-keystore root.jks \-genkeypair \-alias root \-ext bc:c
1181.fl
1182keytool \-keystore ca.jks \-alias ca
1183.fl
1184keytool \-keystore server.jks \-alias server
1185.fl
1186
1187.fl
1188keytool \-keystore root.jks \-alias root \-exportcert > root.pem
1189.fl
1190
1191.fl
1192keytool \-keystore ca.jks \-certreq \-alias ca | keytool \-keystore root.jks \-gencert \-alias root \-ext BC=0 > ca.pem
1193.fl
1194keytool \-keystore ca.jks \-importcert \-alias ca \-file ca.pem
1195.fl
1196
1197.fl
1198keytool \-keystore server.jks \-certreq \-alias server | keytool \-keystore ca.jks \-gencert \-alias ca \-ext ku:c=dig,kE >server.pem
1199.fl
1200cat root.pem ca.pem server.pem | keytool \-keystore server.jks \-importcert \-alias server
1201.fl
1202\fP
1203.fi
1204.RE
1205
1206.LP
duke6e45e102007-12-01 00:00:00 +00001207.SH "TERMINOLOGY and WARNINGS"
1208.LP
1209
1210.LP
1211.SS
1212KeyStore
1213.LP
1214.RS 3
1215
1216.LP
1217A keystore is a storage facility for cryptographic keys and certificates.
1218.RE
1219.RS 3
1220.TP 2
1221o
1222.TP 2
1223o
1224\f3KeyStore Entries\fP
1225.RS 3
1226
1227.LP
1228Keystores may have different types of entries. The two most applicable entry types for \f3keytool\fP include:
1229.RS 3
1230.TP 3
12311.
1232\f3key entries\fP \- each holds very sensitive cryptographic key information, which is stored in a protected format to prevent unauthorized access. Typically, a key stored in this type of entry is a secret key, or a private key accompanied by the certificate "chain" for the corresponding public key. The \f3keytool\fP can handle both types od entry, while \f3jarsigner\fP tool only handle the latter type of entry, that is private keys and their associated certificate chains.
1233.TP 3
12342.
1235\f3trusted certificate entries\fP \- each contains a single public key certificate belonging to another party. It is called a "trusted certificate" because the keystore owner trusts that the public key in the certificate indeed belongs to the identity identified by the "subject" (owner) of the certificate. The issuer of the certificate vouches for this, by signing the certificate.
1236.RE
1237
1238.LP
1239.RE
1240.TP 2
1241o
1242\f3KeyStore Aliases\fP
1243.RS 3
1244.LP
1245All keystore entries (key and trusted certificate entries) are accessed via unique \f2aliases\fP.
1246.LP
1247.LP
1248An alias is specified when you add an entity to the keystore using the \-genseckey command to generate a secret key, \-genkeypair command to generate a key pair (public and private key) or the \-importcert command to add a certificate or certificate chain to the list of trusted certificates. Subsequent \f3keytool\fP commands must use this same alias to refer to the entity.
1249.LP
1250.LP
1251For example, suppose you use the alias \f2duke\fP to generate a new public/private key pair and wrap the public key into a self\-signed certificate (see Certificate Chains) via the following command:
1252.LP
1253.nf
1254\f3
1255.fl
1256 keytool \-genkeypair \-alias duke \-keypass dukekeypasswd
1257.fl
1258\fP
1259.fi
1260
1261.LP
1262This specifies an inital password of "dukekeypasswd" required by subsequent commands to access the private key assocated with the alias \f2duke\fP. If you later want to change duke's private key password, you use a command like the following:
1263.nf
1264\f3
1265.fl
1266 keytool \-keypasswd \-alias duke \-keypass dukekeypasswd \-new newpass
1267.fl
1268\fP
1269.fi
1270
1271.LP
1272This changes the password from "dukekeypasswd" to "newpass".
1273.LP
1274Please note: A password should not actually be specified on a command line or in a script unless it is for testing purposes, or you are on a secure system. If you don't specify a required password option on a command line, you will be prompted for it.
1275.LP
1276.RE
1277.TP 2
1278o
1279\f3KeyStore Implementation\fP
1280.RS 3
1281The \f2KeyStore\fP class provided in the \f2java.security\fP package supplies well\-defined interfaces to access and modify the information in a keystore. It is possible for there to be multiple different concrete implementations, where each implementation is that for a particular \f2type\fP of keystore.
1282.LP
1283Currently, two command\-line tools (\f3keytool\fP and \f3jarsigner\fP) and a GUI\-based tool named \f3Policy Tool\fP make use of keystore implementations. Since \f2KeyStore\fP is publicly available, users can write additional security applications that use it.
1284.LP
1285.LP
1286There is a built\-in default implementation, provided by Sun Microsystems. It implements the keystore as a file, utilizing a proprietary keystore type (format) named "JKS". It protects each private key with its individual password, and also protects the integrity of the entire keystore with a (possibly different) password.
1287.LP
1288.LP
tbell16c34dd2009-05-04 18:28:26 -07001289Keystore implementations are provider\-based. More specifically, the application interfaces supplied by \f2KeyStore\fP are implemented in terms of a "Service Provider Interface" (SPI). That is, there is a corresponding abstract \f2KeystoreSpi\fP class, also in the \f2java.security\fP package, which defines the Service Provider Interface methods that "providers" must implement. (The term "provider" refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API.) Thus, to provide a keystore implementation, clients must implement a "provider" and supply a KeystoreSpi subclass implementation, as described in
1290.na
1291\f2How to Implement a Provider for the Java Cryptography Architecture\fP @
1292.fi
1293http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/HowToImplAProvider.html.
duke6e45e102007-12-01 00:00:00 +00001294.LP
1295.LP
1296Applications can choose different \f2types\fP of keystore implementations from different providers, using the "getInstance" factory method supplied in the \f2KeyStore\fP class. A keystore type defines the storage and data format of the keystore information, and the algorithms used to protect private/secret keys in the keystore and the integrity of the keystore itself. Keystore implementations of different types are not compatible.
1297.LP
1298.LP
1299\f3keytool\fP works on any file\-based keystore implementation. (It treats the keytore location that is passed to it at the command line as a filename and converts it to a FileInputStream, from which it loads the keystore information.) The \f3jarsigner\fP and \f3policytool\fP tools, on the other hand, can read a keystore from any location that can be specified using a URL.
1300.LP
1301.LP
1302For \f3keytool\fP and \f3jarsigner\fP, you can specify a keystore type at the command line, via the \f2\-storetype\fP option. For \f3Policy Tool\fP, you can specify a keystore type via the "Keystore" menu.
1303.LP
1304.LP
1305If you don't explicitly specify a keystore type, the tools choose a keystore implementation based simply on the value of the \f2keystore.type\fP property specified in the security properties file. The security properties file is called \f2java.security\fP, and it resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
1306.LP
1307.LP
1308Each tool gets the \f2keystore.type\fP value and then examines all the currently\-installed providers until it finds one that implements keystores of that type. It then uses the keystore implementation from that provider.
1309.LP
1310.LP
1311The \f2KeyStore\fP class defines a static method named \f2getDefaultType\fP that lets applications and applets retrieve the value of the \f2keystore.type\fP property. The following line of code creates an instance of the default keystore type (as specified in the \f2keystore.type\fP property):
1312.LP
1313.nf
1314\f3
1315.fl
1316 KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
1317.fl
1318\fP
1319.fi
1320
1321.LP
1322.LP
1323The default keystore type is "jks" (the proprietary type of the keystore implementation provided by Sun). This is specified by the following line in the security properties file:
1324.LP
1325.nf
1326\f3
1327.fl
1328 keystore.type=jks
1329.fl
1330\fP
1331.fi
1332
1333.LP
1334.LP
1335To have the tools utilize a keystore implementation other than the default, you can change that line to specify a different keystore type.
1336.LP
1337.LP
1338For example, if you have a provider package that supplies a keystore implementation for a keystore type called "pkcs12", change the line to
1339.LP
1340.nf
1341\f3
1342.fl
1343 keystore.type=pkcs12
1344.fl
1345\fP
1346.fi
1347
1348.LP
1349Note: case doesn't matter in keystore type designations. For example, "JKS" would be considered the same as "jks".
1350.RE
1351.RE
1352.SS
1353Certificate
1354.LP
1355.RS 3
1356
1357.LP
1358A \f3certificate\fP (also known as a \f3public\-key certificate\fP) is a digitally signed statement from one entity (the \f2issuer\fP), saying that the public key (and some other information) of another entity (the \f2subject\fP) has some specific value.
1359.RE
1360.RS 3
1361.TP 2
1362o
1363.TP 2
1364o
1365\f3Certificate Terms\fP
1366.RS 3
1367
1368.LP
1369.RS 3
1370.TP 3
1371Public Keys
1372These are numbers associated with a particular entity, and are intended to be known to everyone who needs to have trusted interactions with that entity. Public keys are used to verify signatures.
1373.TP 3
1374Digitally Signed
1375If some data is \f2digitally signed\fP it has been stored with the "identity" of an entity, and a signature that proves that entity knows about the data. The data is rendered unforgeable by signing with the entity's private key.
1376.TP 3
1377Identity
1378A known way of addressing an entity. In some systems the identity is the public key, in others it can be anything from a Unix UID to an Email address to an X.509 Distinguished Name.
1379.TP 3
1380Signature
1381A signature is computed over some data using the private key of an entity (the \f2signer\fP, which in the case of a certificate is also known as the \f2issuer\fP).
1382.TP 3
1383Private Keys
1384These are numbers, each of which is supposed to be known only to the particular entity whose private key it is (that is, it's supposed to be kept secret). Private and public keys exist in pairs in all public key cryptography systems (also referred to as "public key crypto systems"). In a typical public key crypto system, such as DSA, a private key corresponds to exactly one public key. Private keys are used to compute signatures.
1385.TP 3
1386Entity
1387An entity is a person, organization, program, computer, business, bank, or something else you are trusting to some degree.
1388.RE
1389
1390.LP
1391.LP
1392Basically, public key cryptography requires access to users' public keys. In a large\-scale networked environment it is impossible to guarantee that prior relationships between communicating entities have been established or that a trusted repository exists with all used public keys. Certificates were invented as a solution to this public key distribution problem. Now a \f2Certification Authority\fP (CA) can act as a trusted third party. CAs are entities (for example, businesses) that are trusted to sign (issue) certificates for other entities. It is assumed that CAs will only create valid and reliable certificates, as they are bound by legal agreements. There are many public Certification Authorities, such as
1393.na
1394\f2VeriSign\fP @
1395.fi
1396http://www.verisign.com/,
1397.na
1398\f2Thawte\fP @
1399.fi
1400http://www.thawte.com/,
1401.na
1402\f2Entrust\fP @
1403.fi
1404http://www.entrust.com/, and so on. You can also run your own Certification Authority using products such as the Netscape/Microsoft Certificate Servers or the Entrust CA product for your organization.
1405.LP
1406.LP
1407Using \f3keytool\fP, it is possible to display, import, and export certificates. It is also possible to generate self\-signed certificates.
1408.LP
1409.LP
1410\f3keytool\fP currently handles X.509 certificates.
1411.LP
1412.RE
1413.TP 2
1414o
1415\f3X.509 Certificates\fP
1416.RS 3
1417The X.509 standard defines what information can go into a certificate, and describes how to write it down (the data format). All the data in a certificate is encoded using two related standards called ASN.1/DER. \f2Abstract Syntax Notation 1\fP describes data. The \f2Definite Encoding Rules\fP describe a single way to store and transfer that data.
1418.LP
1419All X.509 certificates have the following data, in addition to the signature:
1420.LP
1421.RS 3
1422.TP 3
1423Version
1424This identifies which version of the X.509 standard applies to this certificate, which affects what information can be specified in it. Thus far, three versions are defined. \f3keytool\fP can import and export v1, v2, and v3 certificates. It generates v3 certificates.
1425.LP
1426\f2X.509 Version 1\fP has been available since 1988, is widely deployed, and is the most generic.
1427.LP
1428\f2X.509 Version 2\fP introduced the concept of subject and issuer unique identifiers to handle the possibility of reuse of subject and/or issuer names over time. Most certificate profile documents strongly recommend that names not be reused, and that certificates should not make use of unique identifiers. Version 2 certificates are not widely used.
1429.LP
1430\f2X.509 Version 3\fP is the most recent (1996) and supports the notion of extensions, whereby anyone can define an extension and include it in the certificate. Some common extensions in use today are: \f2KeyUsage\fP (limits the use of the keys to particular purposes such as "signing\-only") and \f2AlternativeNames\fP (allows other identities to also be associated with this public key, e.g. DNS names, Email addresses, IP addresses). Extensions can be marked \f2critical\fP to indicate that the extension should be checked and enforced/used. For example, if a certificate has the KeyUsage extension marked critical and set to "keyCertSign" then if this certificate is presented during SSL communication, it should be rejected, as the certificate extension indicates that the associated private key should only be used for signing certificates and not for SSL use.
1431.TP 3
1432Serial Number
1433The entity that created the certificate is responsible for assigning it a serial number to distinguish it from other certificates it issues. This information is used in numerous ways, for example when a certificate is revoked its serial number is placed in a Certificate Revocation List (CRL).
1434.TP 3
1435Signature Algorithm Identifier
1436This identifies the algorithm used by the CA to sign the certificate.
1437.TP 3
1438Issuer Name
1439The X.500 Distinguished Name of the entity that signed the certificate. This is normally a CA. Using this certificate implies trusting the entity that signed this certificate. (Note that in some cases, such as \f2root or top\-level\fP CA certificates, the issuer signs its own certificate.)
1440.TP 3
1441Validity Period
1442Each certificate is valid only for a limited amount of time. This period is described by a start date and time and an end date and time, and can be as short as a few seconds or almost as long as a century. The validity period chosen depends on a number of factors, such as the strength of the private key used to sign the certificate or the amount one is willing to pay for a certificate. This is the expected period that entities can rely on the public value, if the associated private key has not been compromised.
1443.TP 3
1444Subject Name
1445The name of the entity whose public key the certificate identifies. This name uses the X.500 standard, so it is intended to be unique across the Internet. This is the X.500 Distinguished Name (DN) of the entity, for example,
1446.nf
1447\f3
1448.fl
1449 CN=Java Duke, OU=Java Software Division, O=Sun Microsystems Inc, C=US
1450.fl
1451\fP
1452.fi
1453(These refer to the subject's Common Name, Organizational Unit, Organization, and Country.)
1454.TP 3
1455Subject Public Key Information
1456This is the public key of the entity being named, together with an algorithm identifier which specifies which public key crypto system this key belongs to and any associated key parameters.
1457.RE
1458
1459.LP
1460.RE
1461.TP 2
1462o
1463\f3Certificate Chains\fP
1464.RS 3
1465.LP
1466\f3keytool\fP can create and manage keystore "key" entries that each contain a private key and an associated certificate "chain". The first certificate in the chain contains the public key corresponding to the private key.
1467.LP
1468.LP
1469When keys are first generated (see the \-genkeypair command), the chain starts off containing a single element, a \f2self\-signed certificate\fP. A self\-signed certificate is one for which the issuer (signer) is the same as the subject (the entity whose public key is being authenticated by the certificate). Whenever the \f2\-genkeypair\fP command is called to generate a new public/private key pair, it also wraps the public key into a self\-signed certificate.
1470.LP
1471.LP
1472Later, after a Certificate Signing Request (CSR) has been generated (see the \-certreq command) and sent to a Certification Authority (CA), the response from the CA is imported (see \-importcert), and the self\-signed certificate is replaced by a chain of certificates. At the bottom of the chain is the certificate (reply) issued by the CA authenticating the subject's public key. The next certificate in the chain is one that authenticates the \f2CA\fP's public key.
1473.LP
1474.LP
1475In many cases, this is a self\-signed certificate (that is, a certificate from the CA authenticating its own public key) and the last certificate in the chain. In other cases, the CA may return a chain of certificates. In this case, the bottom certificate in the chain is the same (a certificate signed by the CA, authenticating the public key of the key entry), but the second certificate in the chain is a certificate signed by a \f2different\fP CA, authenticating the public key of the CA you sent the CSR to. Then, the next certificate in the chain will be a certificate authenticating the second CA's key, and so on, until a self\-signed "root" certificate is reached. Each certificate in the chain (after the first) thus authenticates the public key of the signer of the previous certificate in the chain.
1476.LP
1477.LP
1478Many CAs only return the issued certificate, with no supporting chain, especially when there is a flat hierarchy (no intermediates CAs). In this case, the certificate chain must be established from trusted certificate information already stored in the keystore.
1479.LP
1480.LP
1481A different reply format (defined by the PKCS#7 standard) also includes the supporting certificate chain, in addition to the issued certificate. Both reply formats can be handled by \f3keytool\fP.
1482.LP
1483.LP
1484The top\-level (root) CA certificate is self\-signed. However, the trust into the root's public key does not come from the root certificate itself (anybody could generate a self\-signed certificate with the distinguished name of say, the VeriSign root CA!), but from other sources like a newspaper. The root CA public key is widely known. The only reason it is stored in a certificate is because this is the format understood by most tools, so the certificate in this case is only used as a "vehicle" to transport the root CA's public key. Before you add the root CA certificate to your keystore, you should view it (using the \f2\-printcert\fP option) and compare the displayed fingerprint with the well\-known fingerprint (obtained from a newspaper, the root CA's webpage, etc.).
1485.LP
1486.RE
1487.TP 2
1488o
1489\f3The cacerts Certificates File\fP
1490.RS 3
1491.LP
1492A certificates file named \f3"cacerts"\fP resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
1493.LP
1494.LP
1495The "cacerts" file represents a system\-wide keystore with CA certificates. System administrators can configure and manage that file using \f3keytool\fP, specifying "jks" as the keystore type. The "cacerts" keystore file ships with several root CA certificates with the following aliases and X.500 owner distinguished names:
1496.LP
1497.RS 3
1498.TP 2
1499*
1500\f3Alias\fP: thawtepersonalfreemailca
1501.br
1502\f3Owner DN\fP: EmailAddress=personal\-freemail@thawte.com,
1503.br
1504CN=Thawte Personal Freemail CA,
1505.br
1506OU=Certification Services Division,
1507.br
1508O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
1509.TP 2
1510*
1511\f3Alias\fP: thawtepersonalbasicca
1512.br
1513\f3Owner DN\fP: EmailAddress=personal\-basic@thawte.com,
1514.br
1515CN=Thawte Personal Basic CA,
1516.br
1517OU=Certification Services Division,
1518.br
1519O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
1520.TP 2
1521*
1522\f3Alias\fP: thawtepersonalpremiumca
1523.br
1524\f3Owner DN\fP: EmailAddress=personal\-premium@thawte.com,
1525.br
1526CN=Thawte Personal Premium CA,
1527.br
1528OU=Certification Services Division,
1529.br
1530O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
1531.TP 2
1532*
1533\f3Alias\fP: thawteserverca
1534.br
1535\f3Owner DN\fP: EmailAddress=server\-certs@thawte.com,
1536.br
1537CN=Thawte Server CA, OU=Certification Services Division,
1538.br
1539O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
1540.TP 2
1541*
1542\f3Alias\fP: thawtepremiumserverca
1543.br
1544\f3Owner DN\fP: EmailAddress=premium\-server@thawte.com,
1545.br
1546CN=Thawte Premium Server CA,
1547.br
1548OU=Certification Services Division,
1549.br
1550O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
1551.TP 2
1552*
1553\f3Alias\fP: verisignclass1ca
1554.br
1555\f3Owner DN\fP: OU=Class 1 Public Primary Certification Authority,
1556.br
1557O="VeriSign, Inc.", C=US
1558.TP 2
1559*
1560\f3Alias\fP: verisignclass2ca
1561.br
1562\f3Owner DN\fP: OU=Class 2 Public Primary Certification Authority,
1563.br
1564O="VeriSign, Inc.", C=US
1565.TP 2
1566*
1567\f3Alias\fP: verisignclass3ca
1568.br
1569\f3Owner DN\fP: OU=Class 3 Public Primary Certification Authority,
1570.br
1571O="VeriSign, Inc.", C=US
1572.TP 2
1573*
1574\f3Alias\fP: verisignserverca
1575.br
1576\f3Owner DN\fP: OU=Secure Server Certification Authority,
1577.br
1578O="RSA Data Security, Inc.", C=US
1579.TP 2
1580*
1581\f3Alias\fP: verisignclass1g2ca
1582.br
1583\f3Owner DN\fP: OU=VeriSign Trust Network,
1584.br
1585OU="(c) 1998 VeriSign, Inc. \- For authorized use only",
1586.br
1587OU=Class 1 Public Primary Certification Authority \- G2,
1588.br
1589O="VeriSign, Inc.", C=US
1590.TP 2
1591*
1592\f3Alias\fP: verisignclass1g3ca
1593.br
1594\f3Owner DN\fP: CN=VeriSign Class 1 Public Primary Certification Authority \- G3, OU="(c) 1999 VeriSign, Inc. \- For authorized use only",
1595.br
1596OU=VeriSign Trust Network,
1597.br
1598O="VeriSign, Inc.", C=US
1599.TP 2
1600*
1601\f3Alias\fP: verisignclass2g2ca
1602.br
1603\f3Owner DN\fP: OU=VeriSign Trust Network,
1604.br
1605OU="(c) 1998 VeriSign, Inc. \- For authorized use only",
1606.br
1607OU=Class 2 Public Primary Certification Authority \- G2,
1608.br
1609O="VeriSign, Inc.", C=US
1610.TP 2
1611*
1612\f3Alias\fP: verisignclass2g3ca
1613.br
1614\f3Owner DN\fP: CN=VeriSign Class 2 Public Primary Certification Authority \- G3,
1615.br
1616OU="(c) 1999 VeriSign, Inc. \- For authorized use only",
1617.br
1618OU=VeriSign Trust Network,
1619.br
1620O="VeriSign, Inc.", C=US
1621.TP 2
1622*
1623\f3Alias\fP: verisignclass3g2ca
1624.br
1625\f3Owner DN\fP: OU=VeriSign Trust Network,
1626.br
1627OU="(c) 1998 VeriSign, Inc. \- For authorized use only",
1628.br
1629OU=Class 3 Public Primary Certification Authority \- G2,
1630.br
1631O="VeriSign, Inc.", C=US
1632.TP 2
1633*
1634\f3Alias\fP: verisignclass3g3ca
1635.br
1636\f3Owner DN\fP: CN=VeriSign Class 3 Public Primary Certification Authority \- G3,
1637.br
1638OU="(c) 1999 VeriSign, Inc. \- For authorized use only",
1639.br
1640OU=VeriSign Trust Network,
1641.br
1642O="VeriSign, Inc.", C=US
1643.TP 2
1644*
1645\f3Alias\fP: baltimorecodesigningca
1646.br
1647\f3Owner DN\fP: CN=Baltimore CyberTrust Code Signing Root,
1648.br
1649OU=CyberTrust, O=Baltimore, C=IE
1650.TP 2
1651*
1652\f3Alias\fP: gtecybertrustglobalca
1653.br
1654\f3Owner DN\fP: CN=GTE CyberTrust Global Root,
1655.br
1656OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
1657.TP 2
1658*
1659\f3Alias\fP: baltimorecybertrustca
1660.br
1661\f3Owner DN\fP: CN=Baltimore CyberTrust Root,
1662.br
1663OU=CyberTrust, O=Baltimore, C=IE
1664.TP 2
1665*
duke6e45e102007-12-01 00:00:00 +00001666\f3Alias\fP: gtecybertrust5ca
1667.br
1668\f3Owner DN\fP: CN=GTE CyberTrust Root 5,
1669.br
1670OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
1671.TP 2
1672*
1673\f3Alias\fP: entrustclientca
1674.br
1675\f3Owner DN\fP: CN=Entrust.net Client Certification Authority,
1676.br
1677OU=(c) 1999 Entrust.net Limited,
1678.br
1679OU=www.entrust.net/Client_CA_Info/CPS incorp. by ref. limits liab.,
1680.br
1681O=Entrust.net, C=US
1682.TP 2
1683*
1684\f3Alias\fP: entrustglobalclientca
1685.br
1686\f3Owner DN\fP: CN=Entrust.net Client Certification Authority,
1687.br
1688OU=(c) 2000 Entrust.net Limited,
1689.br
1690OU=www.entrust.net/GCCA_CPS incorp. by ref. (limits liab.),
1691.br
1692O=Entrust.net
1693.TP 2
1694*
1695\f3Alias\fP: entrust2048ca
1696.br
1697\f3Owner DN\fP: CN=Entrust.net Certification Authority (2048),
1698.br
1699OU=(c) 1999 Entrust.net Limited,
1700.br
1701OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.),
1702.br
1703O=Entrust.net
1704.TP 2
1705*
1706\f3Alias\fP: entrustsslca
1707.br
1708\f3Owner DN\fP: CN=Entrust.net Secure Server Certification Authority,
1709.br
1710OU=(c) 1999 Entrust.net Limited,
1711.br
1712OU=www.entrust.net/CPS incorp. by ref. (limits liab.),
1713.br
1714O=Entrust.net, C=US
1715.TP 2
1716*
1717\f3Alias\fP: entrustgsslca
1718.br
1719\f3Owner DN\fP: CN=Entrust.net Secure Server Certification Authority,
1720.br
1721OU=(c) 2000 Entrust.net Limited,
1722.br
1723OU=www.entrust.net/SSL_CPS incorp. by ref. (limits liab.),
1724.br
1725O=Entrust.net
1726.TP 2
1727*
1728\f3Alias\fP: godaddyclass2ca
1729.br
1730\f3Owner DN\fP: OU=Go Daddy Class 2 Certification Authority,
1731.br
1732O="The Go Daddy Group, Inc.", C=US
1733.TP 2
1734*
1735\f3Alias\fP: starfieldclass2ca
1736.br
1737\f3Owner DN\fP: OU=Starfield Class 2 Certification Authority,
1738.br
1739O="Starfield Technologies, Inc.", C=US
1740.TP 2
1741*
1742\f3Alias\fP: valicertclass2ca
1743.br
1744\f3Owner DN\fP: EMAILADDRESS=info@valicert.com,
1745.br
1746CN=http://www.valicert.com/,
1747.br
1748OU=ValiCert Class 2 Policy Validation Authority,
1749.br
1750O="ValiCert, Inc.", L=ValiCert Validation Network
1751.TP 2
1752*
1753\f3Alias\fP: geotrustglobalca
1754.br
1755\f3Owner DN\fP: CN=GeoTrust Global CA,
1756.br
1757O=GeoTrust Inc., C=US
1758.TP 2
1759*
1760\f3Alias\fP: equifaxsecureca
1761.br
1762\f3Owner DN\fP: OU=Equifax Secure Certificate Authority,
1763.br
1764O=Equifax, C=US
1765.TP 2
1766*
1767\f3Alias\fP: equifaxsecureebusinessca1
1768.br
1769\f3Owner DN\fP: CN=Equifax Secure eBusiness CA\-1,
1770.br
1771O=Equifax Secure Inc., C=US
1772.TP 2
1773*
1774\f3Alias\fP: equifaxsecureebusinessca2
1775.br
1776\f3Owner DN\fP: OU=Equifax Secure eBusiness CA\-2,
1777.br
1778O=Equifax Secure, C=US
1779.TP 2
1780*
1781\f3Alias\fP: equifaxsecureglobalebusinessca1
1782.br
1783\f3Owner DN\fP: CN=Equifax Secure Global eBusiness CA\-1,
1784.br
1785O=Equifax Secure Inc., C=US
1786.TP 2
1787*
1788\f3Alias\fP: soneraclass1ca
1789.br
1790\f3Owner DN\fP: CN=Sonera Class1 CA, O=Sonera, C=FI
1791.TP 2
1792*
1793\f3Alias\fP: soneraclass2ca
1794.br
1795\f3Owner DN\fP: CN=Sonera Class2 CA, O=Sonera, C=FI
1796.TP 2
1797*
1798\f3Alias\fP: comodoaaaca
1799.br
1800\f3Owner DN\fP: CN=AAA Certificate Services,
1801.br
1802O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB
1803.TP 2
1804*
1805\f3Alias\fP: addtrustclass1ca
1806.br
1807\f3Owner DN\fP: CN=AddTrust Class 1 CA Root,
1808.br
1809OU=AddTrust TTP Network, O=AddTrust AB, C=SE
1810.TP 2
1811*
1812\f3Alias\fP: addtrustexternalca
1813.br
1814\f3Owner DN\fP: CN=AddTrust External CA Root,
1815.br
1816OU=AddTrust External TTP Network, O=AddTrust AB, C=SE
1817.TP 2
1818*
1819\f3Alias\fP: addtrustqualifiedca
1820.br
1821\f3Owner DN\fP: CN=AddTrust Qualified CA Root,
1822.br
1823OU=AddTrust TTP Network, O=AddTrust AB, C=SE
1824.TP 2
1825*
1826\f3Alias\fP: utnuserfirsthardwareca
1827.br
1828\f3Owner DN\fP: CN=UTN\-USERFirst\-Hardware,
1829.br
1830OU=http://www.usertrust.com, O=The USERTRUST Network,
1831.br
1832L=Salt Lake City, ST=UT, C=US
1833.TP 2
1834*
1835\f3Alias\fP: utnuserfirstclientauthemailca
1836.br
1837\f3Owner DN\fP: CN=UTN\-USERFirst\-Client Authentication and Email,
1838.br
1839OU=http://www.usertrust.com, O=The USERTRUST Network,
1840.br
1841L=Salt Lake City, ST=UT, C=US
1842.TP 2
1843*
1844\f3Alias\fP: utndatacorpsgcca
1845.br
1846\f3Owner DN\fP: CN=UTN \- DATACorp SGC,
1847.br
1848OU=http://www.usertrust.com, O=The USERTRUST Network,
1849.br
1850L=Salt Lake City, ST=UT, C=US
1851.TP 2
1852*
1853\f3Alias\fP: utnuserfirstobjectca
1854.br
1855\f3Owner DN\fP: CN=UTN\-USERFirst\-Object,
1856.br
1857OU=http://www.usertrust.com, O=The USERTRUST Network,
1858.br
1859L=Salt Lake City, ST=UT, C=US
1860.RE
1861
1862.LP
1863.LP
1864The initial password of the "cacerts" keystore file is "changeit". System administrators should change that password and the default access permission of that file upon installing the SDK.
1865.LP
1866.RS 3
1867
1868.LP
1869
1870.LP
1871\f3IMPORTANT: Verify Your \fP\f4cacerts\fP\f3 File\fP
1872.br
1873
1874.LP
1875Since you trust the CAs in the \f2cacerts\fP file as entities for signing and issuing certificates to other entities, you must manage the \f2cacerts\fP file carefully. The \f2cacerts\fP file should contain only certificates of the CAs you trust. It is your responsibility to verify the trusted root CA certificates bundled in the \f2cacerts\fP file and make your own trust decisions. To remove an untrusted CA certificate from the \f2cacerts\fP file, use the delete option of the \f2keytool\fP command. You can find the \f2cacerts\fP file in the JRE installation directory. Contact your system administrator if you do not have permission to edit this file.
1876.br
1877
1878.LP
1879.RE
1880
1881.LP
1882.RE
1883.TP 2
1884o
1885\f3The Internet RFC 1421 Certificate Encoding Standard\fP
1886.RS 3
1887.LP
1888Certificates are often stored using the printable encoding format defined by the Internet RFC 1421 standard, instead of their binary encoding. This certificate format, also known as "Base 64 encoding", facilitates exporting certificates to other applications by email or through some other mechanism.
1889.LP
1890.LP
1891Certificates read by the \f2\-importcert\fP and \f2\-printcert\fP commands can be in either this format or binary encoded.
1892.LP
1893.LP
1894The \f2\-exportcert\fP command by default outputs a certificate in binary encoding, but will instead output a certificate in the printable encoding format, if the \f2\-rfc\fP option is specified.
1895.LP
1896.LP
tbell16c34dd2009-05-04 18:28:26 -07001897The \f2\-list\fP command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, while if the \f2\-rfc\fP option is specified, the certificate is output in the printable encoding format.
duke6e45e102007-12-01 00:00:00 +00001898.LP
1899.LP
1900In its printable encoding format, the encoded certificate is bounded at the beginning by
1901.LP
1902.nf
1903\f3
1904.fl
1905\-\-\-\-\-BEGIN CERTIFICATE\-\-\-\-\-
1906.fl
1907\fP
1908.fi
1909
1910.LP
1911.LP
1912and at the end by
1913.LP
1914.nf
1915\f3
1916.fl
1917\-\-\-\-\-END CERTIFICATE\-\-\-\-\-
1918.fl
1919\fP
1920.fi
1921.RE
1922.RE
1923
1924.LP
1925.SS
1926X.500 Distinguished Names
1927.LP
1928.RS 3
1929
1930.LP
1931X.500 Distinguished Names are used to identify entities, such as those which are named by the \f2subject\fP and \f2issuer\fP (signer) fields of X.509 certificates. \f3keytool\fP supports the following subparts:
1932.RS 3
1933.TP 2
1934o
1935\f2commonName\fP \- common name of a person, e.g., "Susan Jones"
1936.TP 2
1937o
1938\f2organizationUnit\fP \- small organization (e.g, department or division) name, e.g., "Purchasing"
1939.TP 2
1940o
1941\f2organizationName\fP \- large organization name, e.g., "ABCSystems, Inc."
1942.TP 2
1943o
1944\f2localityName\fP \- locality (city) name, e.g., "Palo Alto"
1945.TP 2
1946o
1947\f2stateName\fP \- state or province name, e.g., "California"
1948.TP 2
1949o
1950\f2country\fP \- two\-letter country code, e.g., "CH"
1951.RE
1952
1953.LP
1954.LP
1955When supplying a distinguished name string as the value of a \f2\-dname\fP option, as for the \f2\-genkeypair\fP command, the string must be in the following format:
1956.LP
1957.nf
1958\f3
1959.fl
1960CN=\fP\f4cName\fP\f3, OU=\fP\f4orgUnit\fP\f3, O=\fP\f4org\fP\f3, L=\fP\f4city\fP\f3, S=\fP\f4state\fP\f3, C=\fP\f4countryCode\fP\f3
1961.fl
1962\fP
1963.fi
1964
1965.LP
1966.LP
1967where all the italicized items represent actual values and the above keywords are abbreviations for the following:
1968.LP
1969.nf
1970\f3
1971.fl
1972 CN=commonName
1973.fl
1974 OU=organizationUnit
1975.fl
1976 O=organizationName
1977.fl
1978 L=localityName
1979.fl
1980 S=stateName
1981.fl
1982 C=country
1983.fl
1984\fP
1985.fi
1986
1987.LP
1988.LP
1989A sample distinguished name string is
1990.LP
1991.nf
1992\f3
1993.fl
1994CN=Mark Smith, OU=JavaSoft, O=Sun, L=Cupertino, S=California, C=US
1995.fl
1996\fP
1997.fi
1998
1999.LP
2000and a sample command using such a string is
2001.nf
2002\f3
2003.fl
2004keytool \-genkeypair \-dname "CN=Mark Smith, OU=JavaSoft, O=Sun, L=Cupertino,
2005.fl
2006S=California, C=US" \-alias mark
2007.fl
2008\fP
2009.fi
2010
2011.LP
2012.LP
2013Case does not matter for the keyword abbreviations. For example, "CN", "cn", and "Cn" are all treated the same.
2014.LP
2015.LP
2016Order matters; each subcomponent must appear in the designated order. However, it is not necessary to have all the subcomponents. You may use a subset, for example:
2017.LP
2018.nf
2019\f3
2020.fl
2021CN=Steve Meier, OU=SunSoft, O=Sun, C=US
2022.fl
2023\fP
2024.fi
2025
2026.LP
2027.LP
2028If a distinguished name string value contains a comma, the comma must be escaped by a "\\" character when you specify the string on a command line, as in
2029.LP
2030.nf
2031\f3
2032.fl
2033 cn=peter schuster, o=Sun Microsystems\\, Inc., o=sun, c=us
2034.fl
2035\fP
2036.fi
2037
2038.LP
2039.LP
2040It is never necessary to specify a distinguished name string on a command line. If it is needed for a command, but not supplied on the command line, the user is prompted for each of the subcomponents. In this case, a comma does not need to be escaped by a "\\".
2041.LP
2042.RE
2043.SS
2044WARNING Regarding Importing Trusted Certificates
2045.LP
2046.RS 3
2047
2048.LP
2049IMPORTANT: Be sure to check a certificate very carefully before importing it as a trusted certificate!
2050.LP
2051View it first (using the \f2\-printcert\fP command, or the \f2\-importcert\fP command without the \f2\-noprompt\fP option), and make sure that the displayed certificate fingerprint(s) match the expected ones. For example, suppose someone sends or emails you a certificate, and you put it in a file named \f2/tmp/cert\fP. Before you consider adding the certificate to your list of trusted certificates, you can execute a \f2\-printcert\fP command to view its fingerprints, as in
2052.LP
2053.nf
2054\f3
2055.fl
2056 keytool \-printcert \-file /tmp/cert
2057.fl
2058 Owner: CN=ll, OU=ll, O=ll, L=ll, S=ll, C=ll
2059.fl
2060 Issuer: CN=ll, OU=ll, O=ll, L=ll, S=ll, C=ll
2061.fl
2062 Serial Number: 59092b34
2063.fl
2064 Valid from: Thu Sep 25 18:01:13 PDT 1997 until: Wed Dec 24 17:01:13 PST 1997
2065.fl
2066 Certificate Fingerprints:
2067.fl
2068 MD5: 11:81:AD:92:C8:E5:0E:A2:01:2E:D4:7A:D7:5F:07:6F
2069.fl
2070 SHA1: 20:B6:17:FA:EF:E5:55:8A:D0:71:1F:E8:D6:9D:C0:37:13:0E:5E:FE
2071.fl
2072\fP
2073.fi
2074
2075.LP
2076Then call or otherwise contact the person who sent the certificate, and compare the fingerprint(s) that you see with the ones that they show. Only if the fingerprints are equal is it guaranteed that the certificate has not been replaced in transit with somebody else's (for example, an attacker's) certificate. If such an attack took place, and you did not check the certificate before you imported it, you would end up trusting anything the attacker has signed (for example, a JAR file with malicious class files inside).
2077.LP
2078Note: it is not required that you execute a \f2\-printcert\fP command prior to importing a certificate, since before adding a certificate to the list of trusted certificates in the keystore, the \f2\-importcert\fP command prints out the certificate information and prompts you to verify it. You then have the option of aborting the import operation. Note, however, this is only the case if you invoke the \f2\-importcert\fP command without the \f2\-noprompt\fP option. If the \f2\-noprompt\fP option is given, there is no interaction with the user.
2079.LP
2080.RE
2081.SS
2082Warning Regarding Passwords
2083.LP
2084.RS 3
2085
2086.LP
2087.LP
2088Most commands operating on a keystore require the store password. Some commands require a private/secret key password.
2089.LP
2090.LP
2091Passwords can be specified on the command line (in the \f2\-storepass\fP and \f2\-keypass\fP options, respectively). However, a password should not be specified on a command line or in a script unless it is for testing purposes, or you are on a secure system.
2092.LP
2093.LP
2094If you don't specify a required password option on a command line, you will be prompted for it.
2095.LP
2096.RE
2097.SH "SEE ALSO"
2098.LP
2099
2100.LP
2101.RS 3
2102.TP 2
2103o
tbell16c34dd2009-05-04 18:28:26 -07002104.LP
2105jar(1) tool documentation
duke6e45e102007-12-01 00:00:00 +00002106.TP 2
2107o
tbell16c34dd2009-05-04 18:28:26 -07002108.LP
2109jarsigner(1) tool documentation
duke6e45e102007-12-01 00:00:00 +00002110.TP 2
2111o
tbell16c34dd2009-05-04 18:28:26 -07002112.LP
duke6e45e102007-12-01 00:00:00 +00002113the
2114.na
2115\f4Security\fP @
2116.fi
2117http://java.sun.com/docs/books/tutorial/security/index.html trail of the
2118.na
2119\f4Java Tutorial\fP @
2120.fi
tbell16c34dd2009-05-04 18:28:26 -07002121http://java.sun.com/docs/books/tutorial for examples of the use of \f3keytool\fP
duke6e45e102007-12-01 00:00:00 +00002122.RE
2123
2124.LP
2125.SH "CHANGES"
2126.LP
2127
2128.LP
2129.LP
2130The command interface for keytool changed in Java SE 6.
2131.LP
2132.LP
2133\f3keytool\fP no longer displays password input when entered by users. Since password input can no longer be viewed when entered, users will be prompted to re\-enter passwords any time a password is being set or changed (for example, when setting the initial keystore password, or when changing a key password).
2134.LP
2135.LP
2136Some commands have simply been renamed, and other commands deemed obsolete are no longer listed in this document. All previous commands (both renamed and obsolete) are still supported in this release and will continue to be supported in future releases. The following summarizes all of the changes made to the keytool command interface:
2137.LP
2138.LP
2139Renamed commands:
2140.LP
2141.RS 3
2142.TP 2
2143o
2144\f2\-export\fP, renamed to \f2\-exportcert\fP
2145.TP 2
2146o
2147\f2\-genkey\fP, renamed to \f2\-genkeypair\fP
2148.TP 2
2149o
2150\f2\-import\fP, renamed to \f2\-importcert\fP
2151.RE
2152
2153.LP
2154.LP
2155Commands deemed obsolete and no longer documented:
2156.LP
2157.RS 3
2158.TP 2
2159o
2160.na
2161\f2\-keyclone\fP @
2162.fi
2163http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/keytool.html#keycloneCmd
2164.TP 2
2165o
2166.na
2167\f2\-identitydb\fP @
2168.fi
2169http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/keytool.html#identitydbCmd
2170.TP 2
2171o
2172.na
2173\f2\-selfcert\fP @
2174.fi
2175http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/keytool.html#selfcertCmd
2176.RE
2177
2178.LP
2179
2180.LP
2181