749d6cc0018f641cc96ecfab1b5d3ea385cae8e6
[openssl.git] / doc / man1 / x509.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-x509,
6 x509 - Certificate display and signing utility
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<x509>
11 [B<-help>]
12 [B<-inform DER|PEM>]
13 [B<-outform DER|PEM>]
14 [B<-keyform DER|PEM>]
15 [B<-CAform DER|PEM>]
16 [B<-CAkeyform DER|PEM>]
17 [B<-in filename>]
18 [B<-out filename>]
19 [B<-serial>]
20 [B<-hash>]
21 [B<-subject_hash>]
22 [B<-issuer_hash>]
23 [B<-ocspid>]
24 [B<-subject>]
25 [B<-issuer>]
26 [B<-nameopt option>]
27 [B<-email>]
28 [B<-ocsp_uri>]
29 [B<-startdate>]
30 [B<-enddate>]
31 [B<-purpose>]
32 [B<-dates>]
33 [B<-checkend num>]
34 [B<-modulus>]
35 [B<-pubkey>]
36 [B<-fingerprint>]
37 [B<-alias>]
38 [B<-noout>]
39 [B<-trustout>]
40 [B<-clrtrust>]
41 [B<-clrreject>]
42 [B<-addtrust arg>]
43 [B<-addreject arg>]
44 [B<-setalias arg>]
45 [B<-days arg>]
46 [B<-set_serial n>]
47 [B<-signkey filename>]
48 [B<-passin arg>]
49 [B<-x509toreq>]
50 [B<-req>]
51 [B<-CA filename>]
52 [B<-CAkey filename>]
53 [B<-CAcreateserial>]
54 [B<-CAserial filename>]
55 [B<-new>]
56 [B<-force_pubkey filename>]
57 [B<-subj arg>]
58 [B<-text>]
59 [B<-ext extensions>]
60 [B<-certopt option>]
61 [B<-C>]
62 [B<-I<digest>>]
63 [B<-clrext>]
64 [B<-extfile filename>]
65 [B<-extensions section>]
66 [B<-rand file...>]
67 [B<-writerand file>]
68 [B<-engine id>]
69 [B<-preserve_dates>]
70
71 =head1 DESCRIPTION
72
73 The B<x509> command is a multi purpose certificate utility. It can be
74 used to display certificate information, convert certificates to
75 various forms, sign certificate requests like a "mini CA" or edit
76 certificate trust settings.
77
78 Since there are a large number of options they will split up into
79 various sections.
80
81 =head1 OPTIONS
82
83 =head2 Input, Output, and General Purpose Options
84
85 =over 4
86
87 =item B<-help>
88
89 Print out a usage message.
90
91 =item B<-inform DER|PEM>
92
93 This specifies the input format normally the command will expect an X509
94 certificate but this can change if other options such as B<-req> are
95 present. The DER format is the DER encoding of the certificate and PEM
96 is the base64 encoding of the DER encoding with header and footer lines
97 added. The default format is PEM.
98
99 =item B<-outform DER|PEM>
100
101 This specifies the output format, the options have the same meaning and default
102 as the B<-inform> option.
103
104 =item B<-in filename>
105
106 This specifies the input filename to read a certificate from or standard input
107 if this option is not specified.
108
109 =item B<-out filename>
110
111 This specifies the output filename to write to or standard output by
112 default.
113
114 =item B<-I<digest>>
115
116 The digest to use.
117 This affects any signing or display option that uses a message
118 digest, such as the B<-fingerprint>, B<-signkey> and B<-CA> options.
119 Any digest supported by the OpenSSL B<dgst> command can be used.
120 If not specified then SHA1 is used with B<-fingerprint> or
121 the default digest for the signing algorithm is used, typically SHA256.
122
123 =item B<-rand file...>
124
125 A file or files containing random data used to seed the random number
126 generator.
127 Multiple files can be specified separated by an OS-dependent character.
128 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
129 all others.
130
131 =item [B<-writerand file>]
132
133 Writes random data to the specified I<file> upon exit.
134 This can be used with a subsequent B<-rand> flag.
135
136 =item B<-engine id>
137
138 Specifying an engine (by its unique B<id> string) will cause B<x509>
139 to attempt to obtain a functional reference to the specified engine,
140 thus initialising it if needed. The engine will then be set as the default
141 for all available algorithms.
142
143 =item B<-preserve_dates>
144
145 When signing a certificate, preserve the "notBefore" and "notAfter" dates
146 instead of adjusting them to current time and duration.
147 Cannot be used with the B<-days> option.
148
149 =back
150
151 =head2 Display Options
152
153 Note: the B<-alias> and B<-purpose> options are also display options
154 but are described in the B<TRUST SETTINGS> section.
155
156 =over 4
157
158 =item B<-text>
159
160 Prints out the certificate in text form. Full details are output including the
161 public key, signature algorithms, issuer and subject names, serial number
162 any extensions present and any trust settings.
163
164 =item B<-ext extensions>
165
166 Prints out the certificate extensions in text form. Extensions are specified
167 with a comma separated string, e.g., "subjectAltName,subjectKeyIdentifier".
168 See the L<x509v3_config(5)> manual page for the extension names.
169
170 =item B<-certopt option>
171
172 Customise the output format used with B<-text>. The B<option> argument
173 can be a single option or multiple options separated by commas. The
174 B<-certopt> switch may be also be used more than once to set multiple
175 options. See the B<TEXT OPTIONS> section for more information.
176
177 =item B<-noout>
178
179 This option prevents output of the encoded version of the certificate.
180
181 =item B<-pubkey>
182
183 Outputs the certificate's SubjectPublicKeyInfo block in PEM format.
184
185 =item B<-modulus>
186
187 This option prints out the value of the modulus of the public key
188 contained in the certificate.
189
190 =item B<-serial>
191
192 Outputs the certificate serial number.
193
194 =item B<-subject_hash>
195
196 Outputs the "hash" of the certificate subject name. This is used in OpenSSL to
197 form an index to allow certificates in a directory to be looked up by subject
198 name.
199
200 =item B<-issuer_hash>
201
202 Outputs the "hash" of the certificate issuer name.
203
204 =item B<-ocspid>
205
206 Outputs the OCSP hash values for the subject name and public key.
207
208 =item B<-hash>
209
210 Synonym for "-subject_hash" for backward compatibility reasons.
211
212 =item B<-subject_hash_old>
213
214 Outputs the "hash" of the certificate subject name using the older algorithm
215 as used by OpenSSL before version 1.0.0.
216
217 =item B<-issuer_hash_old>
218
219 Outputs the "hash" of the certificate issuer name using the older algorithm
220 as used by OpenSSL before version 1.0.0.
221
222 =item B<-subject>
223
224 Outputs the subject name.
225
226 =item B<-issuer>
227
228 Outputs the issuer name.
229
230 =item B<-nameopt option>
231
232 Option which determines how the subject or issuer names are displayed. The
233 B<option> argument can be a single option or multiple options separated by
234 commas.  Alternatively the B<-nameopt> switch may be used more than once to
235 set multiple options. See the B<NAME OPTIONS> section for more information.
236
237 =item B<-email>
238
239 Outputs the email address(es) if any.
240
241 =item B<-ocsp_uri>
242
243 Outputs the OCSP responder address(es) if any.
244
245 =item B<-startdate>
246
247 Prints out the start date of the certificate, that is the notBefore date.
248
249 =item B<-enddate>
250
251 Prints out the expiry date of the certificate, that is the notAfter date.
252
253 =item B<-dates>
254
255 Prints out the start and expiry dates of a certificate.
256
257 =item B<-checkend arg>
258
259 Checks if the certificate expires within the next B<arg> seconds and exits
260 non-zero if yes it will expire or zero if not.
261
262 =item B<-fingerprint>
263
264 Calculates and outputs the digest of the DER encoded version of the entire
265 certificate (see digest options).
266 This is commonly called a "fingerprint". Because of the nature of message
267 digests, the fingerprint of a certificate is unique to that certificate and
268 two certificates with the same fingerprint can be considered to be the same.
269
270 =item B<-C>
271
272 This outputs the certificate in the form of a C source file.
273
274 =back
275
276 =head2 Trust Settings
277
278 A B<trusted certificate> is an ordinary certificate which has several
279 additional pieces of information attached to it such as the permitted
280 and prohibited uses of the certificate and an "alias".
281
282 Normally when a certificate is being verified at least one certificate
283 must be "trusted". By default a trusted certificate must be stored
284 locally and must be a root CA: any certificate chain ending in this CA
285 is then usable for any purpose.
286
287 Trust settings currently are only used with a root CA. They allow a finer
288 control over the purposes the root CA can be used for. For example a CA
289 may be trusted for SSL client but not SSL server use.
290
291 See the description of the B<verify> utility for more information on the
292 meaning of trust settings.
293
294 Future versions of OpenSSL will recognize trust settings on any
295 certificate: not just root CAs.
296
297
298 =over 4
299
300 =item B<-trustout>
301
302 This causes B<x509> to output a B<trusted> certificate. An ordinary
303 or trusted certificate can be input but by default an ordinary
304 certificate is output and any trust settings are discarded. With the
305 B<-trustout> option a trusted certificate is output. A trusted
306 certificate is automatically output if any trust settings are modified.
307
308 =item B<-setalias arg>
309
310 Sets the alias of the certificate. This will allow the certificate
311 to be referred to using a nickname for example "Steve's Certificate".
312
313 =item B<-alias>
314
315 Outputs the certificate alias, if any.
316
317 =item B<-clrtrust>
318
319 Clears all the permitted or trusted uses of the certificate.
320
321 =item B<-clrreject>
322
323 Clears all the prohibited or rejected uses of the certificate.
324
325 =item B<-addtrust arg>
326
327 Adds a trusted certificate use.
328 Any object name can be used here but currently only B<clientAuth> (SSL client
329 use), B<serverAuth> (SSL server use), B<emailProtection> (S/MIME email) and
330 B<anyExtendedKeyUsage> are used.
331 As of OpenSSL 1.1.0, the last of these blocks all purposes when rejected or
332 enables all purposes when trusted.
333 Other OpenSSL applications may define additional uses.
334
335 =item B<-addreject arg>
336
337 Adds a prohibited use. It accepts the same values as the B<-addtrust>
338 option.
339
340 =item B<-purpose>
341
342 This option performs tests on the certificate extensions and outputs
343 the results. For a more complete description see the B<CERTIFICATE
344 EXTENSIONS> section.
345
346 =back
347
348 =head2 Signing Options
349
350 The B<x509> utility can be used to sign certificates and requests: it
351 can thus behave like a "mini CA".
352
353 =over 4
354
355 =item B<-signkey filename>
356
357 This option causes the input file to be self signed using the supplied
358 private key.
359
360 It sets the issuer name to the subject name (i.e., makes it self-issued)
361 and changes the public key to the supplied value (unless overridden by
362 B<-force_pubkey>). It sets the validity start date to the current time
363 and the end date to a value determined by the B<-days> option.
364 It retains any certificate extensions unless the B<-clrext> option is supplied;
365 this includes, for example, any existing key identifier extensions.
366
367 =item B<-passin arg>
368
369 The key password source. For more information about the format of B<arg>
370 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
371
372 =item B<-clrext>
373
374 Delete any extensions from a certificate. This option is used when a
375 certificate is being created from another certificate (for example with
376 the B<-signkey> or the B<-CA> options). Normally all extensions are
377 retained.
378
379 =item B<-keyform PEM|DER>
380
381 Specifies the format (DER or PEM) of the private key file used in the
382 B<-signkey> option.
383
384 =item B<-days arg>
385
386 Specifies the number of days to make a certificate valid for. The default
387 is 30 days. Cannot be used with the B<-preserve_dates> option.
388
389 =item B<-x509toreq>
390
391 Converts a certificate into a certificate request. The B<-signkey> option
392 is used to pass the required private key.
393
394 =item B<-req>
395
396 By default a certificate is expected on input. With this option a
397 certificate request is expected instead.
398
399 =item B<-set_serial n>
400
401 Specifies the serial number to use. This option can be used with either
402 the B<-signkey> or B<-CA> options. If used in conjunction with the B<-CA>
403 option the serial number file (as specified by the B<-CAserial> or
404 B<-CAcreateserial> options) is not used.
405
406 The serial number can be decimal or hex (if preceded by B<0x>).
407
408 =item B<-CA filename>
409
410 Specifies the CA certificate to be used for signing. When this option is
411 present B<x509> behaves like a "mini CA". The input file is signed by this
412 CA using this option: that is its issuer name is set to the subject name
413 of the CA and it is digitally signed using the CAs private key.
414
415 This option is normally combined with the B<-req> option. Without the
416 B<-req> option the input is a certificate which must be self signed.
417
418 =item B<-CAkey filename>
419
420 Sets the CA private key to sign a certificate with. If this option is
421 not specified then it is assumed that the CA private key is present in
422 the CA certificate file.
423
424 =item B<-CAserial filename>
425
426 Sets the CA serial number file to use.
427
428 When the B<-CA> option is used to sign a certificate it uses a serial
429 number specified in a file. This file consists of one line containing
430 an even number of hex digits with the serial number to use. After each
431 use the serial number is incremented and written out to the file again.
432
433 The default filename consists of the CA certificate file base name with
434 ".srl" appended. For example if the CA certificate file is called
435 "mycacert.pem" it expects to find a serial number file called "mycacert.srl".
436
437 =item B<-CAcreateserial>
438
439 With this option the CA serial number file is created if it does not exist:
440 it will contain the serial number "02" and the certificate being signed will
441 have the 1 as its serial number. If the B<-CA> option is specified
442 and the serial number file does not exist a random number is generated;
443 this is the recommended practice.
444
445 =item B<-extfile filename>
446
447 File containing certificate extensions to use. If not specified then
448 no extensions are added to the certificate.
449
450 =item B<-extensions section>
451
452 The section to add certificate extensions from. If this option is not
453 specified then the extensions should either be contained in the unnamed
454 (default) section or the default section should contain a variable called
455 "extensions" which contains the section to use. See the
456 L<x509v3_config(5)> manual page for details of the
457 extension section format.
458
459 =item B<-new>
460
461 Generate a certificate from scratch, not using an input certificate
462 or certificate request. So the B<-in> option must not be used in this case.
463 Instead, the B<-subj> and <-force_pubkey> options need to be given.
464
465 =item B<-force_pubkey filename>
466
467 When a certificate is created set its public key to the key in B<filename>
468 instead of the key contained in the input or given with the B<-signkey> option.
469
470 This option is useful for creating self-issued certificates that are not
471 self-signed, for instance when the key cannot be used for signing, such as DH.
472 It can also be used in conjunction with b<-new> and B<-subj> to directly
473 generate a certificate containing any desired public key.
474
475 The format of the key file can be specified using the B<-keyform> option.
476
477 =item B<-subj arg>
478
479 When a certificate is created set its subject name to the given value.
480 The arg must be formatted as I</type0=value0/type1=value1/type2=...>.
481 Keyword characters may be escaped by \ (backslash), and whitespace is retained.
482 Empty values are permitted, but the corresponding type will not be included
483 in the certificate. Giving a single I</> will lead to an empty sequence of RDNs
484 (a NULL subject DN).
485
486 Unless the B<-CA> option is given the issuer is set to the same value.
487
488 This option can be used in conjunction with the B<-force_pubkey> option
489 to create a certificate even without providing an input certificate
490 or certificate request.
491
492 =back
493
494 =head2 Name Options
495
496 The B<nameopt> command line switch determines how the subject and issuer
497 names are displayed. If no B<nameopt> switch is present the default "oneline"
498 format is used which is compatible with previous versions of OpenSSL.
499 Each option is described in detail below, all options can be preceded by
500 a B<-> to turn the option off. Only the first four will normally be used.
501
502 =over 4
503
504 =item B<compat>
505
506 Use the old format.
507
508 =item B<RFC2253>
509
510 Displays names compatible with RFC2253 equivalent to B<esc_2253>, B<esc_ctrl>,
511 B<esc_msb>, B<utf8>, B<dump_nostr>, B<dump_unknown>, B<dump_der>,
512 B<sep_comma_plus>, B<dn_rev> and B<sname>.
513
514 =item B<oneline>
515
516 A oneline format which is more readable than RFC2253. It is equivalent to
517 specifying the  B<esc_2253>, B<esc_ctrl>, B<esc_msb>, B<utf8>, B<dump_nostr>,
518 B<dump_der>, B<use_quote>, B<sep_comma_plus_space>, B<space_eq> and B<sname>
519 options.  This is the I<default> of no name options are given explicitly.
520
521 =item B<multiline>
522
523 A multiline format. It is equivalent B<esc_ctrl>, B<esc_msb>, B<sep_multiline>,
524 B<space_eq>, B<lname> and B<align>.
525
526 =item B<esc_2253>
527
528 Escape the "special" characters required by RFC2253 in a field. That is
529 B<,+"E<lt>E<gt>;>. Additionally B<#> is escaped at the beginning of a string
530 and a space character at the beginning or end of a string.
531
532 =item B<esc_2254>
533
534 Escape the "special" characters required by RFC2254 in a field. That is
535 the B<NUL> character as well as and B<()*>.
536
537 =item B<esc_ctrl>
538
539 Escape control characters. That is those with ASCII values less than
540 0x20 (space) and the delete (0x7f) character. They are escaped using the
541 RFC2253 \XX notation (where XX are two hex digits representing the
542 character value).
543
544 =item B<esc_msb>
545
546 Escape characters with the MSB set, that is with ASCII values larger than
547 127.
548
549 =item B<use_quote>
550
551 Escapes some characters by surrounding the whole string with B<"> characters,
552 without the option all escaping is done with the B<\> character.
553
554 =item B<utf8>
555
556 Convert all strings to UTF8 format first. This is required by RFC2253. If
557 you are lucky enough to have a UTF8 compatible terminal then the use
558 of this option (and B<not> setting B<esc_msb>) may result in the correct
559 display of multibyte (international) characters. Is this option is not
560 present then multibyte characters larger than 0xff will be represented
561 using the format \UXXXX for 16 bits and \WXXXXXXXX for 32 bits.
562 Also if this option is off any UTF8Strings will be converted to their
563 character form first.
564
565 =item B<ignore_type>
566
567 This option does not attempt to interpret multibyte characters in any
568 way. That is their content octets are merely dumped as though one octet
569 represents each character. This is useful for diagnostic purposes but
570 will result in rather odd looking output.
571
572 =item B<show_type>
573
574 Show the type of the ASN1 character string. The type precedes the
575 field contents. For example "BMPSTRING: Hello World".
576
577 =item B<dump_der>
578
579 When this option is set any fields that need to be hexdumped will
580 be dumped using the DER encoding of the field. Otherwise just the
581 content octets will be displayed. Both options use the RFC2253
582 B<#XXXX...> format.
583
584 =item B<dump_nostr>
585
586 Dump non character string types (for example OCTET STRING) if this
587 option is not set then non character string types will be displayed
588 as though each content octet represents a single character.
589
590 =item B<dump_all>
591
592 Dump all fields. This option when used with B<dump_der> allows the
593 DER encoding of the structure to be unambiguously determined.
594
595 =item B<dump_unknown>
596
597 Dump any field whose OID is not recognised by OpenSSL.
598
599 =item B<sep_comma_plus>, B<sep_comma_plus_space>, B<sep_semi_plus_space>,
600 B<sep_multiline>
601
602 These options determine the field separators. The first character is
603 between Relative Distinguished Names (RDNs) and the second is between
604 multiple Attribute Value Assertions (AVAs, multiple AVAs are
605 very rare and their use is discouraged). The options ending in
606 "space" additionally place a space after the separator to make it
607 more readable. The B<sep_multiline> uses a linefeed character for
608 the RDN separator and a spaced B<+> for the AVA separator. It also
609 indents the fields by four characters. If no field separator is specified
610 then B<sep_comma_plus_space> is used by default.
611
612 =item B<dn_rev>
613
614 Reverse the fields of the DN. This is required by RFC2253. As a side
615 effect this also reverses the order of multiple AVAs but this is
616 permissible.
617
618 =item B<nofname>, B<sname>, B<lname>, B<oid>
619
620 These options alter how the field name is displayed. B<nofname> does
621 not display the field at all. B<sname> uses the "short name" form
622 (CN for commonName for example). B<lname> uses the long form.
623 B<oid> represents the OID in numerical form and is useful for
624 diagnostic purpose.
625
626 =item B<align>
627
628 Align field values for a more readable output. Only usable with
629 B<sep_multiline>.
630
631 =item B<space_eq>
632
633 Places spaces round the B<=> character which follows the field
634 name.
635
636 =back
637
638 =head2 Text Options
639
640 As well as customising the name output format, it is also possible to
641 customise the actual fields printed using the B<certopt> options when
642 the B<text> option is present. The default behaviour is to print all fields.
643
644 =over 4
645
646 =item B<compatible>
647
648 Use the old format. This is equivalent to specifying no output options at all.
649
650 =item B<no_header>
651
652 Don't print header information: that is the lines saying "Certificate"
653 and "Data".
654
655 =item B<no_version>
656
657 Don't print out the version number.
658
659 =item B<no_serial>
660
661 Don't print out the serial number.
662
663 =item B<no_signame>
664
665 Don't print out the signature algorithm used.
666
667 =item B<no_validity>
668
669 Don't print the validity, that is the B<notBefore> and B<notAfter> fields.
670
671 =item B<no_subject>
672
673 Don't print out the subject name.
674
675 =item B<no_issuer>
676
677 Don't print out the issuer name.
678
679 =item B<no_pubkey>
680
681 Don't print out the public key.
682
683 =item B<no_sigdump>
684
685 Don't give a hexadecimal dump of the certificate signature.
686
687 =item B<no_aux>
688
689 Don't print out certificate trust information.
690
691 =item B<no_extensions>
692
693 Don't print out any X509V3 extensions.
694
695 =item B<ext_default>
696
697 Retain default extension behaviour: attempt to print out unsupported
698 certificate extensions.
699
700 =item B<ext_error>
701
702 Print an error message for unsupported certificate extensions.
703
704 =item B<ext_parse>
705
706 ASN1 parse unsupported extensions.
707
708 =item B<ext_dump>
709
710 Hex dump unsupported extensions.
711
712 =item B<ca_default>
713
714 The value used by the B<ca> utility, equivalent to B<no_issuer>, B<no_pubkey>,
715 B<no_header>, and B<no_version>.
716
717 =back
718
719 =head1 EXAMPLES
720
721 Note: in these examples the '\' means the example should be all on one
722 line.
723
724 Display the contents of a certificate:
725
726  openssl x509 -in cert.pem -noout -text
727
728 Display the "Subject Alternative Name" extension of a certificate:
729
730  openssl x509 -in cert.pem -noout -ext subjectAltName
731
732 Display more extensions of a certificate:
733
734  openssl x509 -in cert.pem -noout -ext subjectAltName,nsCertType
735
736 Display the certificate serial number:
737
738  openssl x509 -in cert.pem -noout -serial
739
740 Display the certificate subject name:
741
742  openssl x509 -in cert.pem -noout -subject
743
744 Display the certificate subject name in RFC2253 form:
745
746  openssl x509 -in cert.pem -noout -subject -nameopt RFC2253
747
748 Display the certificate subject name in oneline form on a terminal
749 supporting UTF8:
750
751  openssl x509 -in cert.pem -noout -subject -nameopt oneline,-esc_msb
752
753 Display the certificate SHA1 fingerprint:
754
755  openssl x509 -sha1 -in cert.pem -noout -fingerprint
756
757 Convert a certificate from PEM to DER format:
758
759  openssl x509 -in cert.pem -inform PEM -out cert.der -outform DER
760
761 Convert a certificate to a certificate request:
762
763  openssl x509 -x509toreq -in cert.pem -out req.pem -signkey key.pem
764
765 Convert a certificate request into a self signed certificate using
766 extensions for a CA:
767
768  openssl x509 -req -in careq.pem -extfile openssl.cnf -extensions v3_ca \
769         -signkey key.pem -out cacert.pem
770
771 Sign a certificate request using the CA certificate above and add user
772 certificate extensions:
773
774  openssl x509 -req -in req.pem -extfile openssl.cnf -extensions v3_usr \
775         -CA cacert.pem -CAkey key.pem -CAcreateserial
776
777
778 Set a certificate to be trusted for SSL client use and change set its alias to
779 "Steve's Class 1 CA"
780
781  openssl x509 -in cert.pem -addtrust clientAuth \
782         -setalias "Steve's Class 1 CA" -out trust.pem
783
784 =head1 NOTES
785
786 The PEM format uses the header and footer lines:
787
788  -----BEGIN CERTIFICATE-----
789  -----END CERTIFICATE-----
790
791 it will also handle files containing:
792
793  -----BEGIN X509 CERTIFICATE-----
794  -----END X509 CERTIFICATE-----
795
796 Trusted certificates have the lines
797
798  -----BEGIN TRUSTED CERTIFICATE-----
799  -----END TRUSTED CERTIFICATE-----
800
801 The conversion to UTF8 format used with the name options assumes that
802 T61Strings use the ISO8859-1 character set. This is wrong but Netscape
803 and MSIE do this as do many certificates. So although this is incorrect
804 it is more likely to display the majority of certificates correctly.
805
806 The B<-email> option searches the subject name and the subject alternative
807 name extension. Only unique email addresses will be printed out: it will
808 not print the same address more than once.
809
810 =head1 CERTIFICATE EXTENSIONS
811
812 The B<-purpose> option checks the certificate extensions and determines
813 what the certificate can be used for. The actual checks done are rather
814 complex and include various hacks and workarounds to handle broken
815 certificates and software.
816
817 The same code is used when verifying untrusted certificates in chains
818 so this section is useful if a chain is rejected by the verify code.
819
820 The basicConstraints extension CA flag is used to determine whether the
821 certificate can be used as a CA. If the CA flag is true then it is a CA,
822 if the CA flag is false then it is not a CA. B<All> CAs should have the
823 CA flag set to true.
824
825 If the basicConstraints extension is absent then the certificate is
826 considered to be a "possible CA" other extensions are checked according
827 to the intended use of the certificate. A warning is given in this case
828 because the certificate should really not be regarded as a CA: however
829 it is allowed to be a CA to work around some broken software.
830
831 If the certificate is a V1 certificate (and thus has no extensions) and
832 it is self signed it is also assumed to be a CA but a warning is again
833 given: this is to work around the problem of Verisign roots which are V1
834 self signed certificates.
835
836 If the keyUsage extension is present then additional restraints are
837 made on the uses of the certificate. A CA certificate B<must> have the
838 keyCertSign bit set if the keyUsage extension is present.
839
840 The extended key usage extension places additional restrictions on the
841 certificate uses. If this extension is present (whether critical or not)
842 the key can only be used for the purposes specified.
843
844 A complete description of each test is given below. The comments about
845 basicConstraints and keyUsage and V1 certificates above apply to B<all>
846 CA certificates.
847
848
849 =over 4
850
851 =item B<SSL Client>
852
853 The extended key usage extension must be absent or include the "web client
854 authentication" OID.  keyUsage must be absent or it must have the
855 digitalSignature bit set. Netscape certificate type must be absent or it must
856 have the SSL client bit set.
857
858 =item B<SSL Client CA>
859
860 The extended key usage extension must be absent or include the "web client
861 authentication" OID. Netscape certificate type must be absent or it must have
862 the SSL CA bit set: this is used as a work around if the basicConstraints
863 extension is absent.
864
865 =item B<SSL Server>
866
867 The extended key usage extension must be absent or include the "web server
868 authentication" and/or one of the SGC OIDs.  keyUsage must be absent or it
869 must have the digitalSignature, the keyEncipherment set or both bits set.
870 Netscape certificate type must be absent or have the SSL server bit set.
871
872 =item B<SSL Server CA>
873
874 The extended key usage extension must be absent or include the "web server
875 authentication" and/or one of the SGC OIDs.  Netscape certificate type must
876 be absent or the SSL CA bit must be set: this is used as a work around if the
877 basicConstraints extension is absent.
878
879 =item B<Netscape SSL Server>
880
881 For Netscape SSL clients to connect to an SSL server it must have the
882 keyEncipherment bit set if the keyUsage extension is present. This isn't
883 always valid because some cipher suites use the key for digital signing.
884 Otherwise it is the same as a normal SSL server.
885
886 =item B<Common S/MIME Client Tests>
887
888 The extended key usage extension must be absent or include the "email
889 protection" OID. Netscape certificate type must be absent or should have the
890 S/MIME bit set. If the S/MIME bit is not set in Netscape certificate type
891 then the SSL client bit is tolerated as an alternative but a warning is shown:
892 this is because some Verisign certificates don't set the S/MIME bit.
893
894 =item B<S/MIME Signing>
895
896 In addition to the common S/MIME client tests the digitalSignature bit or
897 the nonRepudiation bit must be set if the keyUsage extension is present.
898
899 =item B<S/MIME Encryption>
900
901 In addition to the common S/MIME tests the keyEncipherment bit must be set
902 if the keyUsage extension is present.
903
904 =item B<S/MIME CA>
905
906 The extended key usage extension must be absent or include the "email
907 protection" OID. Netscape certificate type must be absent or must have the
908 S/MIME CA bit set: this is used as a work around if the basicConstraints
909 extension is absent.
910
911 =item B<CRL Signing>
912
913 The keyUsage extension must be absent or it must have the CRL signing bit
914 set.
915
916 =item B<CRL Signing CA>
917
918 The normal CA tests apply. Except in this case the basicConstraints extension
919 must be present.
920
921 =back
922
923 =head1 BUGS
924
925 Extensions in certificates are not transferred to certificate requests and
926 vice versa.
927
928 It is possible to produce invalid certificates or requests by specifying the
929 wrong private key or using inconsistent options in some cases: these should
930 be checked.
931
932 There should be options to explicitly set such things as start and end
933 dates rather than an offset from the current time.
934
935 =head1 SEE ALSO
936
937 L<req(1)>, L<ca(1)>, L<genrsa(1)>,
938 L<gendsa(1)>, L<verify(1)>,
939 L<x509v3_config(5)>
940
941 =head1 HISTORY
942
943 The hash algorithm used in the B<-subject_hash> and B<-issuer_hash> options
944 before OpenSSL 1.0.0 was based on the deprecated MD5 algorithm and the encoding
945 of the distinguished name. In OpenSSL 1.0.0 and later it is based on a
946 canonical version of the DN using SHA1. This means that any directories using
947 the old form must have their links rebuilt using B<c_rehash> or similar.
948
949 =head1 COPYRIGHT
950
951 Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
952
953 Licensed under the Apache License 2.0 (the "License").  You may not use
954 this file except in compliance with the License.  You can obtain a copy
955 in the file LICENSE in the source distribution or at
956 L<https://www.openssl.org/source/license.html>.
957
958 =cut