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