Forcibly enable memory leak checking during "make test"
[openssl.git] / doc / apps / x509.pod
1
2 =pod
3
4 =head1 NAME
5
6 x509 - Certificate display and signing utility
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<x509>
11 [B<-inform DER|PEM|NET>]
12 [B<-outform DER|PEM|NET>]
13 [B<-keyform DER|PEM>]
14 [B<-CAform DER|PEM>]
15 [B<-CAkeyform DER|PEM>]
16 [B<-in filename>]
17 [B<-out filename>]
18 [B<-serial>]
19 [B<-hash>]
20 [B<-subject>]
21 [B<-issuer>]
22 [B<-nameopt option>]
23 [B<-email>]
24 [B<-startdate>]
25 [B<-enddate>]
26 [B<-purpose>]
27 [B<-dates>]
28 [B<-modulus>]
29 [B<-fingerprint>]
30 [B<-alias>]
31 [B<-noout>]
32 [B<-trustout>]
33 [B<-clrtrust>]
34 [B<-clrreject>]
35 [B<-addtrust arg>]
36 [B<-addreject arg>]
37 [B<-setalias arg>]
38 [B<-days arg>]
39 [B<-set_serial n>]
40 [B<-signkey filename>]
41 [B<-x509toreq>]
42 [B<-req>]
43 [B<-CA filename>]
44 [B<-CAkey filename>]
45 [B<-CAcreateserial>]
46 [B<-CAserial filename>]
47 [B<-text>]
48 [B<-C>]
49 [B<-md2|-md5|-sha1|-mdc2>]
50 [B<-clrext>]
51 [B<-extfile filename>]
52 [B<-extensions section>]
53
54 =head1 DESCRIPTION
55
56 The B<x509> command is a multi purpose certificate utility. It can be
57 used to display certificate information, convert certificates to
58 various forms, sign certificate requests like a "mini CA" or edit
59 certificate trust settings.
60
61 Since there are a large number of options they will split up into
62 various sections.
63
64
65 =head1 INPUT, OUTPUT AND GENERAL PURPOSE OPTIONS
66
67 =over 4
68
69 =item B<-inform DER|PEM|NET>
70
71 This specifies the input format normally the command will expect an X509
72 certificate but this can change if other options such as B<-req> are
73 present. The DER format is the DER encoding of the certificate and PEM
74 is the base64 encoding of the DER encoding with header and footer lines
75 added. The NET option is an obscure Netscape server format that is now
76 obsolete.
77
78 =item B<-outform DER|PEM|NET>
79
80 This specifies the output format, the options have the same meaning as the 
81 B<-inform> option.
82
83 =item B<-in filename>
84
85 This specifies the input filename to read a certificate from or standard input
86 if this option is not specified.
87
88 =item B<-out filename>
89
90 This specifies the output filename to write to or standard output by
91 default.
92
93 =item B<-md2|-md5|-sha1|-mdc2>
94
95 the digest to use. This affects any signing or display option that uses a message
96 digest, such as the B<-fingerprint>, B<-signkey> and B<-CA> options. If not
97 specified then MD5 is used. If the key being used to sign with is a DSA key then
98 this option has no effect: SHA1 is always used with DSA keys.
99
100
101 =back
102
103 =head1 DISPLAY OPTIONS
104
105 Note: the B<-alias> and B<-purpose> options are also display options
106 but are described in the B<TRUST OPTIONS> section.
107
108 =over 4
109
110 =item B<-text>
111
112 prints out the certificate in text form. Full details are output including the
113 public key, signature algorithms, issuer and subject names, serial number
114 any extensions present and any trust settings.
115
116 =item B<-noout>
117
118 this option prevents output of the encoded version of the request.
119
120 =item B<-modulus>
121
122 this option prints out the value of the modulus of the public key
123 contained in the certificate.
124
125 =item B<-serial>
126
127 outputs the certificate serial number.
128
129 =item B<-hash>
130
131 outputs the "hash" of the certificate subject name. This is used in OpenSSL to
132 form an index to allow certificates in a directory to be looked up by subject
133 name.
134
135 =item B<-subject>
136
137 outputs the subject name.
138
139 =item B<-issuer>
140
141 outputs the issuer name.
142
143 =item B<-nameopt option>
144
145 option which determine how the subject or issuer names are displayed. This
146 option may be used more than once to set multiple options. See the B<NAME
147 OPTIONS> section for more information.
148
149 =item B<-email>
150
151 outputs the email address(es) if any.
152
153 =item B<-startdate>
154
155 prints out the start date of the certificate, that is the notBefore date.
156
157 =item B<-enddate>
158
159 prints out the expiry date of the certificate, that is the notAfter date.
160
161 =item B<-dates>
162
163 prints out the start and expiry dates of a certificate.
164
165 =item B<-fingerprint>
166
167 prints out the digest of the DER encoded version of the whole certificate
168 (see digest options).
169
170 =item B<-C>
171
172 this outputs the certificate in the form of a C source file.
173
174 =back
175
176 =head1 TRUST SETTINGS
177
178 Please note these options are currently experimental and may well change.
179
180 A B<trusted certificate> is an ordinary certificate which has several
181 additional pieces of information attached to it such as the permitted
182 and prohibited uses of the certificate and an "alias".
183
184 Normally when a certificate is being verified at least one certificate
185 must be "trusted". By default a trusted certificate must be stored
186 locally and must be a root CA: any certificate chain ending in this CA
187 is then usable for any purpose.
188
189 Trust settings currently are only used with a root CA. They allow a finer
190 control over the purposes the root CA can be used for. For example a CA
191 may be trusted for SSL client but not SSL server use.
192
193 See the description of the B<verify> utility for more information on the
194 meaning of trust settings.
195
196 Future versions of OpenSSL will recognize trust settings on any
197 certificate: not just root CAs.
198
199
200 =over 4
201
202 =item B<-trustout>
203
204 this causes B<x509> to output a B<trusted> certificate. An ordinary
205 or trusted certificate can be input but by default an ordinary
206 certificate is output and any trust settings are discarded. With the
207 B<-trustout> option a trusted certificate is output. A trusted
208 certificate is automatically output if any trust settings are modified.
209
210 =item B<-setalias arg>
211
212 sets the alias of the certificate. This will allow the certificate
213 to be referred to using a nickname for example "Steve's Certificate".
214
215 =item B<-alias>
216
217 outputs the certificate alias, if any.
218
219 =item B<-clrtrust>
220
221 clears all the permitted or trusted uses of the certificate.
222
223 =item B<-clrreject>
224
225 clears all the prohibited or rejected uses of the certificate.
226
227 =item B<-addtrust arg>
228
229 adds a trusted certificate use. Any object name can be used here
230 but currently only B<clientAuth> (SSL client use), B<serverAuth>
231 (SSL server use) and B<emailProtection> (S/MIME email) are used.
232 Other OpenSSL applications may define additional uses.
233
234 =item B<-addreject arg>
235
236 adds a prohibited use. It accepts the same values as the B<-addtrust>
237 option.
238
239 =item B<-purpose>
240
241 this option performs tests on the certificate extensions and outputs
242 the results. For a more complete description see the B<CERTIFICATE
243 EXTENSIONS> section.
244
245 =back
246
247 =head1 SIGNING OPTIONS
248
249 The B<x509> utility can be used to sign certificates and requests: it
250 can thus behave like a "mini CA".
251
252 =over 4
253
254 =item B<-signkey filename>
255
256 this option causes the input file to be self signed using the supplied
257 private key. 
258
259 If the input file is a certificate it sets the issuer name to the
260 subject name (i.e.  makes it self signed) changes the public key to the
261 supplied value and changes the start and end dates. The start date is
262 set to the current time and the end date is set to a value determined
263 by the B<-days> option. Any certificate extensions are retained unless
264 the B<-clrext> option is supplied.
265
266 If the input is a certificate request then a self signed certificate
267 is created using the supplied private key using the subject name in
268 the request.
269
270 =item B<-clrext>
271
272 delete any extensions from a certificate. This option is used when a
273 certificate is being created from another certificate (for example with
274 the B<-signkey> or the B<-CA> options). Normally all extensions are
275 retained.
276
277 =item B<-keyform PEM|DER>
278
279 specifies the format (DER or PEM) of the private key file used in the
280 B<-signkey> option.
281
282 =item B<-days arg>
283
284 specifies the number of days to make a certificate valid for. The default
285 is 30 days.
286
287 =item B<-x509toreq>
288
289 converts a certificate into a certificate request. The B<-signkey> option
290 is used to pass the required private key.
291
292 =item B<-req>
293
294 by default a certificate is expected on input. With this option a
295 certificate request is expected instead.
296
297 =item B<-set_serial n>
298
299 specifies the serial number to use. This option can be used with either
300 the B<-signkey> or B<-CA> options. If used in conjunction with the B<-CA>
301 option the serial number file (as specified by the B<-CAserial> or
302 B<-CAcreateserial> options) is not used.
303
304 The serial number can be decimal or hex (if preceded by B<0x>). Negative
305 serial numbers can also be specified but their use is not recommended.
306
307 =item B<-CA filename>
308
309 specifies the CA certificate to be used for signing. When this option is
310 present B<x509> behaves like a "mini CA". The input file is signed by this
311 CA using this option: that is its issuer name is set to the subject name
312 of the CA and it is digitally signed using the CAs private key.
313
314 This option is normally combined with the B<-req> option. Without the
315 B<-req> option the input is a certificate which must be self signed.
316
317 =item B<-CAkey filename>
318
319 sets the CA private key to sign a certificate with. If this option is
320 not specified then it is assumed that the CA private key is present in
321 the CA certificate file.
322
323 =item B<-CAserial filename>
324
325 sets the CA serial number file to use.
326
327 When the B<-CA> option is used to sign a certificate it uses a serial
328 number specified in a file. This file consist of one line containing
329 an even number of hex digits with the serial number to use. After each
330 use the serial number is incremented and written out to the file again.
331
332 The default filename consists of the CA certificate file base name with
333 ".srl" appended. For example if the CA certificate file is called 
334 "mycacert.pem" it expects to find a serial number file called "mycacert.srl".
335
336 =item B<-CAcreateserial filename>
337
338 with this option the CA serial number file is created if it does not exist:
339 it will contain the serial number "02" and the certificate being signed will
340 have the 1 as its serial number. Normally if the B<-CA> option is specified
341 and the serial number file does not exist it is an error.
342
343 =item B<-extfile filename>
344
345 file containing certificate extensions to use. If not specified then
346 no extensions are added to the certificate.
347
348 =item B<-extensions section>
349
350 the section to add certificate extensions from. If this option is not
351 specified then the extensions should either be contained in the unnamed
352 (default) section or the default section should contain a variable called
353 "extensions" which contains the section to use.
354
355 =back
356
357 =head1 NAME OPTIONS
358
359 The B<nameopt> command line switch determines how the subject and issuer
360 names are displayed. If no B<nameopt> switch is present the default "oneline"
361 format is used which is compatible with previous versions of OpenSSL.
362 Each option is described in detail below, all options can be preceded by
363 a B<-> to turn the option off. Only the first four will normally be used.
364
365 =over 4
366
367 =item B<compat>
368
369 use the old format. This is equivalent to specifying no name options at all.
370
371 =item B<RFC2253>
372
373 displays names compatible with RFC2253 equivalent to B<esc_2253>, B<esc_ctrl>,
374 B<esc_msb>, B<utf8>, B<dump_nostr>, B<dump_unknown>, B<dump_der>,
375 B<sep_comma_plus>, B<dn_rev> and B<sname>.
376
377 =item B<oneline>
378
379 a oneline format which is more readable than RFC2253. It is equivalent to
380 specifying the  B<esc_2253>, B<esc_ctrl>, B<esc_msb>, B<utf8>, B<dump_nostr>,
381 B<dump_der>, B<use_quote>, B<sep_comma_plus_spc>, B<spc_eq> and B<sname>
382 options.
383
384 =item B<multiline>
385
386 a multiline format. It is equivalent B<esc_ctrl>, B<esc_msb>, B<sep_multiline>,
387 B<spc_eq> and B<lname>.
388
389 =item B<esc_2253>
390
391 escape the "special" characters required by RFC2253 in a field That is
392 B<,+"E<lt>E<gt>;>. Additionally B<#> is escaped at the beginnging of a string
393 and a space character at the beginning or end of a string.
394
395 =item B<esc_ctrl>
396
397 escape control characters. That is those with ASCII values less than
398 0x20 (space) and the delete (0x7f) character. They are escaped using the
399 RFC2253 \XX notation (where XX are two hex digits representing the
400 character value).
401
402 =item B<esc_msb>
403
404 escape characters with the MSB set, that is with ASCII values larger than
405 127.
406
407 =item B<use_quote>
408
409 escapes some characters by surrounding the whole string with B<"> characters,
410 without the option all escaping is done with the B<\> character.
411
412 =item B<utf8>
413
414 convert all strings to UTF8 format first. This is required by RFC2253. If
415 you are lucky enough to have a UTF8 compatible terminal then the use
416 of this option (and B<not> setting B<esc_msb>) may result in the correct
417 display of multibyte (international) characters. Is this option is not
418 present then multibyte characters larger than 0xff will be represented
419 using the format \UXXXX for 16 bits and \WXXXXXXXX for 32 bits.
420 Also if this option is off any UTF8Strings will be converted to their
421 character form first.
422
423 =item B<no_type>
424
425 this option does not attempt to interpret multibyte characters in any
426 way. That is their content octets are merely dumped as though one octet
427 represents each character. This is useful for diagnostic purposes but
428 will result in rather odd looking output.
429
430 =item B<show_type>
431
432 show the type of the ASN1 character string. The type precedes the
433 field contents. For example "BMPSTRING: Hello World".
434
435 =item B<dump_der>
436
437 when this option is set any fields that need to be hexdumped will
438 be dumped using the DER encoding of the field. Otherwise just the
439 content octets will be displayed. Both options use the RFC2253
440 B<#XXXX...> format.
441
442 =item B<dump_nostr>
443
444 dump non character string types (for example OCTET STRING) if this
445 option is not set then non character string types will be displayed
446 as though each content octet repesents a single character.
447
448 =item B<dump_all>
449
450 dump all fields. This option when used with B<dump_der> allows the
451 DER encoding of the structure to be unambiguously determined.
452
453 =item B<dump_unknown>
454
455 dump any field whose OID is not recognised by OpenSSL.
456
457 =item B<sep_comma_plus>, B<sep_comma_plus_space>, B<sep_semi_plus_space>,
458 B<sep_multiline>
459
460 these options determine the field separators. The first character is
461 between RDNs and the second between multiple AVAs (multiple AVAs are
462 very rare and their use is discouraged). The options ending in
463 "space" additionally place a space after the separator to make it
464 more readable. The B<sep_multiline> uses a linefeed character for
465 the RDN separator and a spaced B<+> for the AVA separator. It also
466 indents the fields by four characters.
467
468 =item B<dn_rev>
469
470 reverse the fields of the DN. This is required by RFC2253. As a side
471 effect this also reverses the order of multiple AVAs but this is
472 permissible.
473
474 =item B<nofname>, B<sname>, B<lname>, B<oid>
475
476 these options alter how the field name is displayed. B<nofname> does
477 not display the field at all. B<sname> uses the "short name" form
478 (CN for commonName for example). B<lname> uses the long form.
479 B<oid> represents the OID in numerical form and is useful for
480 diagnostic purpose.
481
482 =item B<spc_eq>
483
484 places spaces round the B<=> character which follows the field
485 name.
486
487 =back
488
489 =head1 EXAMPLES
490
491 Note: in these examples the '\' means the example should be all on one
492 line.
493
494 Display the contents of a certificate:
495
496  openssl x509 -in cert.pem -noout -text
497
498 Display the certificate serial number:
499
500  openssl x509 -in cert.pem -noout -serial
501
502 Display the certificate subject name:
503
504  openssl x509 -in cert.pem -noout -subject
505
506 Display the certificate subject name in RFC2253 form:
507
508  openssl x509 -in cert.pem -noout -subject -nameopt RFC2253
509
510 Display the certificate subject name in oneline form on a terminal
511 supporting UTF8:
512
513  openssl x509 -in cert.pem -noout -subject -nameopt oneline -nameopt -escmsb
514
515 Display the certificate MD5 fingerprint:
516
517  openssl x509 -in cert.pem -noout -fingerprint
518
519 Display the certificate SHA1 fingerprint:
520
521  openssl x509 -sha1 -in cert.pem -noout -fingerprint
522
523 Convert a certificate from PEM to DER format:
524
525  openssl x509 -in cert.pem -inform PEM -out cert.der -outform DER
526
527 Convert a certificate to a certificate request:
528
529  openssl x509 -x509toreq -in cert.pem -out req.pem -signkey key.pem
530
531 Convert a certificate request into a self signed certificate using
532 extensions for a CA:
533
534  openssl x509 -req -in careq.pem -extfile openssl.cnf -extensions v3_ca \
535         -signkey key.pem -out cacert.pem
536
537 Sign a certificate request using the CA certificate above and add user
538 certificate extensions:
539
540  openssl x509 -req -in req.pem -extfile openssl.cnf -extensions v3_usr \
541         -CA cacert.pem -CAkey key.pem -CAcreateserial
542
543
544 Set a certificate to be trusted for SSL client use and change set its alias to
545 "Steve's Class 1 CA"
546
547  openssl x509 -in cert.pem -addtrust sslclient \
548         -alias "Steve's Class 1 CA" -out trust.pem
549
550 =head1 NOTES
551
552 The PEM format uses the header and footer lines:
553
554  -----BEGIN CERTIFICATE----
555  -----END CERTIFICATE----
556
557 it will also handle files containing:
558
559  -----BEGIN X509 CERTIFICATE----
560  -----END X509 CERTIFICATE----
561
562 Trusted certificates have the lines
563
564  -----BEGIN TRUSTED CERTIFICATE----
565  -----END TRUSTED CERTIFICATE----
566
567 The conversion to UTF8 format used with the name options assumes that
568 T61Strings use the ISO8859-1 character set. This is wrong but Netscape
569 and MSIE do this as do many certificates. So although this is incorrect
570 it is more likely to display the majority of certificates correctly.
571
572 The B<-fingerprint> option takes the digest of the DER encoded certificate.
573 This is commonly called a "fingerprint". Because of the nature of message
574 digests the fingerprint of a certificate is unique to that certificate and
575 two certificates with the same fingerprint can be considered to be the same.
576
577 The Netscape fingerprint uses MD5 whereas MSIE uses SHA1.
578
579 The B<-email> option searches the subject name and the subject alternative
580 name extension. Only unique email addresses will be printed out: it will
581 not print the same address more than once.
582
583 =head1 CERTIFICATE EXTENSIONS
584
585 The B<-purpose> option checks the certificate extensions and determines
586 what the certificate can be used for. The actual checks done are rather
587 complex and include various hacks and workarounds to handle broken
588 certificates and software.
589
590 The same code is used when verifying untrusted certificates in chains
591 so this section is useful if a chain is rejected by the verify code.
592
593 The basicConstraints extension CA flag is used to determine whether the
594 certificate can be used as a CA. If the CA flag is true then it is a CA,
595 if the CA flag is false then it is not a CA. B<All> CAs should have the
596 CA flag set to true.
597
598 If the basicConstraints extension is absent then the certificate is
599 considered to be a "possible CA" other extensions are checked according
600 to the intended use of the certificate. A warning is given in this case
601 because the certificate should really not be regarded as a CA: however
602 it is allowed to be a CA to work around some broken software.
603
604 If the certificate is a V1 certificate (and thus has no extensions) and
605 it is self signed it is also assumed to be a CA but a warning is again
606 given: this is to work around the problem of Verisign roots which are V1
607 self signed certificates.
608
609 If the keyUsage extension is present then additional restraints are
610 made on the uses of the certificate. A CA certificate B<must> have the
611 keyCertSign bit set if the keyUsage extension is present.
612
613 The extended key usage extension places additional restrictions on the
614 certificate uses. If this extension is present (whether critical or not)
615 the key can only be used for the purposes specified.
616
617 A complete description of each test is given below. The comments about
618 basicConstraints and keyUsage and V1 certificates above apply to B<all>
619 CA certificates.
620
621
622 =over 4
623
624 =item B<SSL Client>
625
626 The extended key usage extension must be absent or include the "web client
627 authentication" OID.  keyUsage must be absent or it must have the
628 digitalSignature bit set. Netscape certificate type must be absent or it must
629 have the SSL client bit set.
630
631 =item B<SSL Client CA>
632
633 The extended key usage extension must be absent or include the "web client
634 authentication" OID. Netscape certificate type must be absent or it must have
635 the SSL CA bit set: this is used as a work around if the basicConstraints
636 extension is absent.
637
638 =item B<SSL Server>
639
640 The extended key usage extension must be absent or include the "web server
641 authentication" and/or one of the SGC OIDs.  keyUsage must be absent or it
642 must have the digitalSignature, the keyEncipherment set or both bits set.
643 Netscape certificate type must be absent or have the SSL server bit set.
644
645 =item B<SSL Server CA>
646
647 The extended key usage extension must be absent or include the "web server
648 authentication" and/or one of the SGC OIDs.  Netscape certificate type must
649 be absent or the SSL CA bit must be set: this is used as a work around if the
650 basicConstraints extension is absent.
651
652 =item B<Netscape SSL Server>
653
654 For Netscape SSL clients to connect to an SSL server it must have the
655 keyEncipherment bit set if the keyUsage extension is present. This isn't
656 always valid because some cipher suites use the key for digital signing.
657 Otherwise it is the same as a normal SSL server.
658
659 =item B<Common S/MIME Client Tests>
660
661 The extended key usage extension must be absent or include the "email
662 protection" OID. Netscape certificate type must be absent or should have the
663 S/MIME bit set. If the S/MIME bit is not set in netscape certificate type
664 then the SSL client bit is tolerated as an alternative but a warning is shown:
665 this is because some Verisign certificates don't set the S/MIME bit.
666
667 =item B<S/MIME Signing>
668
669 In addition to the common S/MIME client tests the digitalSignature bit must
670 be set if the keyUsage extension is present.
671
672 =item B<S/MIME Encryption>
673
674 In addition to the common S/MIME tests the keyEncipherment bit must be set
675 if the keyUsage extension is present.
676
677 =item B<S/MIME CA>
678
679 The extended key usage extension must be absent or include the "email
680 protection" OID. Netscape certificate type must be absent or must have the
681 S/MIME CA bit set: this is used as a work around if the basicConstraints
682 extension is absent. 
683
684 =item B<CRL Signing>
685
686 The keyUsage extension must be absent or it must have the CRL signing bit
687 set.
688
689 =item B<CRL Signing CA>
690
691 The normal CA tests apply. Except in this case the basicConstraints extension
692 must be present.
693
694 =back
695
696 =head1 BUGS
697
698 Extensions in certificates are not transferred to certificate requests and
699 vice versa.
700
701 It is possible to produce invalid certificates or requests by specifying the
702 wrong private key or using inconsistent options in some cases: these should
703 be checked.
704
705 There should be options to explicitly set such things as start and end
706 dates rather than an offset from the current time.
707
708 The code to implement the verify behaviour described in the B<TRUST SETTINGS>
709 is currently being developed. It thus describes the intended behaviour rather
710 than the current behaviour. It is hoped that it will represent reality in
711 OpenSSL 0.9.5 and later.
712
713 =head1 SEE ALSO
714
715 L<req(1)|req(1)>, L<ca(1)|ca(1)>, L<genrsa(1)|genrsa(1)>,
716 L<gendsa(1)|gendsa(1)>, L<verify(1)|verify(1)>
717
718 =cut