openssl dgst, openssl enc: check for end of input
[openssl.git] / doc / man1 / ca.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-ca,
6 ca - sample minimal CA application
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<ca>
11 [B<-help>]
12 [B<-verbose>]
13 [B<-config filename>]
14 [B<-name section>]
15 [B<-gencrl>]
16 [B<-revoke file>]
17 [B<-valid file>]
18 [B<-status serial>]
19 [B<-updatedb>]
20 [B<-crl_reason reason>]
21 [B<-crl_hold instruction>]
22 [B<-crl_compromise time>]
23 [B<-crl_CA_compromise time>]
24 [B<-crldays days>]
25 [B<-crlhours hours>]
26 [B<-crlexts section>]
27 [B<-startdate date>]
28 [B<-enddate date>]
29 [B<-days arg>]
30 [B<-md arg>]
31 [B<-policy arg>]
32 [B<-keyfile arg>]
33 [B<-keyform PEM|DER>]
34 [B<-key arg>]
35 [B<-passin arg>]
36 [B<-cert file>]
37 [B<-selfsign>]
38 [B<-in file>]
39 [B<-out file>]
40 [B<-notext>]
41 [B<-outdir dir>]
42 [B<-infiles>]
43 [B<-spkac file>]
44 [B<-ss_cert file>]
45 [B<-preserveDN>]
46 [B<-noemailDN>]
47 [B<-batch>]
48 [B<-msie_hack>]
49 [B<-extensions section>]
50 [B<-extfile section>]
51 [B<-engine id>]
52 [B<-subj arg>]
53 [B<-utf8>]
54 [B<-sigopt nm:v>]
55 [B<-create_serial>]
56 [B<-rand_serial>]
57 [B<-multivalue-rdn>]
58 [B<-rand file...>]
59 [B<-writerand file>]
60 [B<-sm2-id string>]
61 [B<-sm2-hex-id hex-string>]
62
63 =head1 DESCRIPTION
64
65 The B<ca> command is a minimal CA application. It can be used
66 to sign certificate requests in a variety of forms and generate
67 CRLs it also maintains a text database of issued certificates
68 and their status.
69
70 The options descriptions will be divided into each purpose.
71
72 =head1 OPTIONS
73
74 =over 4
75
76 =item B<-help>
77
78 Print out a usage message.
79
80 =item B<-verbose>
81
82 This prints extra details about the operations being performed.
83
84 =item B<-config filename>
85
86 Specifies the configuration file to use.
87 Optional; for a description of the default value,
88 see L<openssl(1)/COMMAND SUMMARY>.
89
90 =item B<-name section>
91
92 Specifies the configuration file section to use (overrides
93 B<default_ca> in the B<ca> section).
94
95 =item B<-in filename>
96
97 An input filename containing a single certificate request to be
98 signed by the CA.
99
100 =item B<-ss_cert filename>
101
102 A single self-signed certificate to be signed by the CA.
103
104 =item B<-spkac filename>
105
106 A file containing a single Netscape signed public key and challenge
107 and additional field values to be signed by the CA. See the B<SPKAC FORMAT>
108 section for information on the required input and output format.
109
110 =item B<-infiles>
111
112 If present this should be the last option, all subsequent arguments
113 are taken as the names of files containing certificate requests.
114
115 =item B<-out filename>
116
117 The output file to output certificates to. The default is standard
118 output. The certificate details will also be printed out to this
119 file in PEM format (except that B<-spkac> outputs DER format).
120
121 =item B<-outdir directory>
122
123 The directory to output certificates to. The certificate will be
124 written to a filename consisting of the serial number in hex with
125 ".pem" appended.
126
127 =item B<-cert>
128
129 The CA certificate file.
130
131 =item B<-keyfile filename>
132
133 The private key to sign requests with.
134
135 =item B<-keyform PEM|DER>
136
137 The format of the data in the private key file.
138 The default is PEM.
139
140 =item B<-sigopt nm:v>
141
142 Pass options to the signature algorithm during sign or verify operations.
143 Names and values of these options are algorithm-specific.
144
145 =item B<-key password>
146
147 The password used to encrypt the private key. Since on some
148 systems the command line arguments are visible (e.g. Unix with
149 the 'ps' utility) this option should be used with caution.
150
151 =item B<-selfsign>
152
153 Indicates the issued certificates are to be signed with the key
154 the certificate requests were signed with (given with B<-keyfile>).
155 Certificate requests signed with a different key are ignored.  If
156 B<-spkac>, B<-ss_cert> or B<-gencrl> are given, B<-selfsign> is
157 ignored.
158
159 A consequence of using B<-selfsign> is that the self-signed
160 certificate appears among the entries in the certificate database
161 (see the configuration option B<database>), and uses the same
162 serial number counter as all other certificates sign with the
163 self-signed certificate.
164
165 =item B<-passin arg>
166
167 The key password source. For more information about the format of B<arg>
168 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
169
170 =item B<-notext>
171
172 Don't output the text form of a certificate to the output file.
173
174 =item B<-startdate date>
175
176 This allows the start date to be explicitly set. The format of the
177 date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure), or
178 YYYYMMDDHHMMSSZ (the same as an ASN1 GeneralizedTime structure). In
179 both formats, seconds SS and timezone Z must be present.
180
181 =item B<-enddate date>
182
183 This allows the expiry date to be explicitly set. The format of the
184 date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure), or
185 YYYYMMDDHHMMSSZ (the same as an ASN1 GeneralizedTime structure). In
186 both formats, seconds SS and timezone Z must be present.
187
188 =item B<-days arg>
189
190 The number of days to certify the certificate for.
191
192 =item B<-md alg>
193
194 The message digest to use.
195 Any digest supported by the OpenSSL B<dgst> command can be used. For signing
196 algorithms that do not support a digest (i.e. Ed25519 and Ed448) any message
197 digest that is set is ignored. This option also applies to CRLs.
198
199 =item B<-policy arg>
200
201 This option defines the CA "policy" to use. This is a section in
202 the configuration file which decides which fields should be mandatory
203 or match the CA certificate. Check out the B<POLICY FORMAT> section
204 for more information.
205
206 =item B<-msie_hack>
207
208 This is a deprecated option to make B<ca> work with very old versions of
209 the IE certificate enrollment control "certenr3". It used UniversalStrings
210 for almost everything. Since the old control has various security bugs
211 its use is strongly discouraged.
212
213 =item B<-preserveDN>
214
215 Normally the DN order of a certificate is the same as the order of the
216 fields in the relevant policy section. When this option is set the order
217 is the same as the request. This is largely for compatibility with the
218 older IE enrollment control which would only accept certificates if their
219 DNs match the order of the request. This is not needed for Xenroll.
220
221 =item B<-noemailDN>
222
223 The DN of a certificate can contain the EMAIL field if present in the
224 request DN, however it is good policy just having the e-mail set into
225 the altName extension of the certificate. When this option is set the
226 EMAIL field is removed from the certificate' subject and set only in
227 the, eventually present, extensions. The B<email_in_dn> keyword can be
228 used in the configuration file to enable this behaviour.
229
230 =item B<-batch>
231
232 This sets the batch mode. In this mode no questions will be asked
233 and all certificates will be certified automatically.
234
235 =item B<-extensions section>
236
237 The section of the configuration file containing certificate extensions
238 to be added when a certificate is issued (defaults to B<x509_extensions>
239 unless the B<-extfile> option is used). If no extension section is
240 present then, a V1 certificate is created. If the extension section
241 is present (even if it is empty), then a V3 certificate is created. See the
242 L<x509v3_config(5)> manual page for details of the
243 extension section format.
244
245 =item B<-extfile file>
246
247 An additional configuration file to read certificate extensions from
248 (using the default section unless the B<-extensions> option is also
249 used).
250
251 =item B<-engine id>
252
253 Specifying an engine (by its unique B<id> string) will cause B<ca>
254 to attempt to obtain a functional reference to the specified engine,
255 thus initialising it if needed. The engine will then be set as the default
256 for all available algorithms.
257
258 =item B<-subj arg>
259
260 Supersedes subject name given in the request.
261 The arg must be formatted as I</type0=value0/type1=value1/type2=...>.
262 Keyword characters may be escaped by \ (backslash), and whitespace is retained.
263 Empty values are permitted, but the corresponding type will not be included
264 in the resulting certificate.
265
266 =item B<-utf8>
267
268 This option causes field values to be interpreted as UTF8 strings, by
269 default they are interpreted as ASCII. This means that the field
270 values, whether prompted from a terminal or obtained from a
271 configuration file, must be valid UTF8 strings.
272
273 =item B<-create_serial>
274
275 If reading serial from the text file as specified in the configuration
276 fails, specifying this option creates a new random serial to be used as next
277 serial number.
278 To get random serial numbers, use the B<-rand_serial> flag instead; this
279 should only be used for simple error-recovery.
280
281 =item B<-rand_serial>
282
283 Generate a large random number to use as the serial number.
284 This overrides any option or configuration to use a serial number file.
285
286 =item B<-multivalue-rdn>
287
288 This option causes the -subj argument to be interpreted with full
289 support for multivalued RDNs. Example:
290
291 I</DC=org/DC=OpenSSL/DC=users/UID=123456+CN=John Doe>
292
293 If -multi-rdn is not used then the UID value is I<123456+CN=John Doe>.
294
295 =item B<-rand file...>
296
297 A file or files containing random data used to seed the random number
298 generator.
299 Multiple files can be specified separated by an OS-dependent character.
300 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
301 all others.
302
303 =item [B<-writerand file>]
304
305 Writes random data to the specified I<file> upon exit.
306 This can be used with a subsequent B<-rand> flag.
307
308 =item B<-sm2-id>
309
310 Specify the ID string to use when verifying an SM2 certificate. The ID string is
311 required by the SM2 signature algorithm for signing and verification.
312
313 =item B<-sm2-hex-id>
314
315 Specify a binary ID string to use when signing or verifying using an SM2
316 certificate. The argument for this option is string of hexadecimal digits.
317
318 =back
319
320 =head1 CRL OPTIONS
321
322 =over 4
323
324 =item B<-gencrl>
325
326 This option generates a CRL based on information in the index file.
327
328 =item B<-crldays num>
329
330 The number of days before the next CRL is due. That is the days from
331 now to place in the CRL nextUpdate field.
332
333 =item B<-crlhours num>
334
335 The number of hours before the next CRL is due.
336
337 =item B<-revoke filename>
338
339 A filename containing a certificate to revoke.
340
341 =item B<-valid filename>
342
343 A filename containing a certificate to add a Valid certificate entry.
344
345 =item B<-status serial>
346
347 Displays the revocation status of the certificate with the specified
348 serial number and exits.
349
350 =item B<-updatedb>
351
352 Updates the database index to purge expired certificates.
353
354 =item B<-crl_reason reason>
355
356 Revocation reason, where B<reason> is one of: B<unspecified>, B<keyCompromise>,
357 B<CACompromise>, B<affiliationChanged>, B<superseded>, B<cessationOfOperation>,
358 B<certificateHold> or B<removeFromCRL>. The matching of B<reason> is case
359 insensitive. Setting any revocation reason will make the CRL v2.
360
361 In practice B<removeFromCRL> is not particularly useful because it is only used
362 in delta CRLs which are not currently implemented.
363
364 =item B<-crl_hold instruction>
365
366 This sets the CRL revocation reason code to B<certificateHold> and the hold
367 instruction to B<instruction> which must be an OID. Although any OID can be
368 used only B<holdInstructionNone> (the use of which is discouraged by RFC2459)
369 B<holdInstructionCallIssuer> or B<holdInstructionReject> will normally be used.
370
371 =item B<-crl_compromise time>
372
373 This sets the revocation reason to B<keyCompromise> and the compromise time to
374 B<time>. B<time> should be in GeneralizedTime format that is B<YYYYMMDDHHMMSSZ>.
375
376 =item B<-crl_CA_compromise time>
377
378 This is the same as B<crl_compromise> except the revocation reason is set to
379 B<CACompromise>.
380
381 =item B<-crlexts section>
382
383 The section of the configuration file containing CRL extensions to
384 include. If no CRL extension section is present then a V1 CRL is
385 created, if the CRL extension section is present (even if it is
386 empty) then a V2 CRL is created. The CRL extensions specified are
387 CRL extensions and B<not> CRL entry extensions.  It should be noted
388 that some software (for example Netscape) can't handle V2 CRLs. See
389 L<x509v3_config(5)> manual page for details of the
390 extension section format.
391
392 =back
393
394 =head1 CONFIGURATION FILE OPTIONS
395
396 The section of the configuration file containing options for B<ca>
397 is found as follows: If the B<-name> command line option is used,
398 then it names the section to be used. Otherwise the section to
399 be used must be named in the B<default_ca> option of the B<ca> section
400 of the configuration file (or in the default section of the
401 configuration file). Besides B<default_ca>, the following options are
402 read directly from the B<ca> section:
403  RANDFILE
404  preserve
405  msie_hack
406 With the exception of B<RANDFILE>, this is probably a bug and may
407 change in future releases.
408
409 Many of the configuration file options are identical to command line
410 options. Where the option is present in the configuration file
411 and the command line the command line value is used. Where an
412 option is described as mandatory then it must be present in
413 the configuration file or the command line equivalent (if
414 any) used.
415
416 =over 4
417
418 =item B<oid_file>
419
420 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
421 Each line of the file should consist of the numerical form of the
422 object identifier followed by white space then the short name followed
423 by white space and finally the long name.
424
425 =item B<oid_section>
426
427 This specifies a section in the configuration file containing extra
428 object identifiers. Each line should consist of the short name of the
429 object identifier followed by B<=> and the numerical form. The short
430 and long names are the same when this option is used.
431
432 =item B<new_certs_dir>
433
434 The same as the B<-outdir> command line option. It specifies
435 the directory where new certificates will be placed. Mandatory.
436
437 =item B<certificate>
438
439 The same as B<-cert>. It gives the file containing the CA
440 certificate. Mandatory.
441
442 =item B<private_key>
443
444 Same as the B<-keyfile> option. The file containing the
445 CA private key. Mandatory.
446
447 =item B<RANDFILE>
448
449 At startup the specified file is loaded into the random number generator,
450 and at exit 256 bytes will be written to it.
451
452 =item B<default_days>
453
454 The same as the B<-days> option. The number of days to certify
455 a certificate for.
456
457 =item B<default_startdate>
458
459 The same as the B<-startdate> option. The start date to certify
460 a certificate for. If not set the current time is used.
461
462 =item B<default_enddate>
463
464 The same as the B<-enddate> option. Either this option or
465 B<default_days> (or the command line equivalents) must be
466 present.
467
468 =item B<default_crl_hours default_crl_days>
469
470 The same as the B<-crlhours> and the B<-crldays> options. These
471 will only be used if neither command line option is present. At
472 least one of these must be present to generate a CRL.
473
474 =item B<default_md>
475
476 The same as the B<-md> option. Mandatory except where the signing algorithm does
477 not require a digest (i.e. Ed25519 and Ed448).
478
479 =item B<database>
480
481 The text database file to use. Mandatory. This file must be present
482 though initially it will be empty.
483
484 =item B<unique_subject>
485
486 If the value B<yes> is given, the valid certificate entries in the
487 database must have unique subjects.  if the value B<no> is given,
488 several valid certificate entries may have the exact same subject.
489 The default value is B<yes>, to be compatible with older (pre 0.9.8)
490 versions of OpenSSL.  However, to make CA certificate roll-over easier,
491 it's recommended to use the value B<no>, especially if combined with
492 the B<-selfsign> command line option.
493
494 Note that it is valid in some circumstances for certificates to be created
495 without any subject. In the case where there are multiple certificates without
496 subjects this does not count as a duplicate.
497
498 =item B<serial>
499
500 A text file containing the next serial number to use in hex. Mandatory.
501 This file must be present and contain a valid serial number.
502
503 =item B<crlnumber>
504
505 A text file containing the next CRL number to use in hex. The crl number
506 will be inserted in the CRLs only if this file exists. If this file is
507 present, it must contain a valid CRL number.
508
509 =item B<x509_extensions>
510
511 The same as B<-extensions>.
512
513 =item B<crl_extensions>
514
515 The same as B<-crlexts>.
516
517 =item B<preserve>
518
519 The same as B<-preserveDN>
520
521 =item B<email_in_dn>
522
523 The same as B<-noemailDN>. If you want the EMAIL field to be removed
524 from the DN of the certificate simply set this to 'no'. If not present
525 the default is to allow for the EMAIL filed in the certificate's DN.
526
527 =item B<msie_hack>
528
529 The same as B<-msie_hack>
530
531 =item B<policy>
532
533 The same as B<-policy>. Mandatory. See the B<POLICY FORMAT> section
534 for more information.
535
536 =item B<name_opt>, B<cert_opt>
537
538 These options allow the format used to display the certificate details
539 when asking the user to confirm signing. All the options supported by
540 the B<x509> utilities B<-nameopt> and B<-certopt> switches can be used
541 here, except the B<no_signame> and B<no_sigdump> are permanently set
542 and cannot be disabled (this is because the certificate signature cannot
543 be displayed because the certificate has not been signed at this point).
544
545 For convenience the values B<ca_default> are accepted by both to produce
546 a reasonable output.
547
548 If neither option is present the format used in earlier versions of
549 OpenSSL is used. Use of the old format is B<strongly> discouraged because
550 it only displays fields mentioned in the B<policy> section, mishandles
551 multicharacter string types and does not display extensions.
552
553 =item B<copy_extensions>
554
555 Determines how extensions in certificate requests should be handled.
556 If set to B<none> or this option is not present then extensions are
557 ignored and not copied to the certificate. If set to B<copy> then any
558 extensions present in the request that are not already present are copied
559 to the certificate. If set to B<copyall> then all extensions in the
560 request are copied to the certificate: if the extension is already present
561 in the certificate it is deleted first. See the B<WARNINGS> section before
562 using this option.
563
564 The main use of this option is to allow a certificate request to supply
565 values for certain extensions such as subjectAltName.
566
567 =back
568
569 =head1 POLICY FORMAT
570
571 The policy section consists of a set of variables corresponding to
572 certificate DN fields. If the value is "match" then the field value
573 must match the same field in the CA certificate. If the value is
574 "supplied" then it must be present. If the value is "optional" then
575 it may be present. Any fields not mentioned in the policy section
576 are silently deleted, unless the B<-preserveDN> option is set but
577 this can be regarded more of a quirk than intended behaviour.
578
579 =head1 SPKAC FORMAT
580
581 The input to the B<-spkac> command line option is a Netscape
582 signed public key and challenge. This will usually come from
583 the B<KEYGEN> tag in an HTML form to create a new private key.
584 It is however possible to create SPKACs using the B<spkac> utility.
585
586 The file should contain the variable SPKAC set to the value of
587 the SPKAC and also the required DN components as name value pairs.
588 If you need to include the same component twice then it can be
589 preceded by a number and a '.'.
590
591 When processing SPKAC format, the output is DER if the B<-out>
592 flag is used, but PEM format if sending to stdout or the B<-outdir>
593 flag is used.
594
595 =head1 EXAMPLES
596
597 Note: these examples assume that the B<ca> directory structure is
598 already set up and the relevant files already exist. This usually
599 involves creating a CA certificate and private key with B<req>, a
600 serial number file and an empty index file and placing them in
601 the relevant directories.
602
603 To use the sample configuration file below the directories demoCA,
604 demoCA/private and demoCA/newcerts would be created. The CA
605 certificate would be copied to demoCA/cacert.pem and its private
606 key to demoCA/private/cakey.pem. A file demoCA/serial would be
607 created containing for example "01" and the empty index file
608 demoCA/index.txt.
609
610
611 Sign a certificate request:
612
613  openssl ca -in req.pem -out newcert.pem
614
615 Sign an SM2 certificate request:
616
617  openssl ca -in sm2.csr -out sm2.crt -md sm3 -sigopt "sm2_id:1234567812345678" -sm2-id "1234567812345678"
618
619 Sign a certificate request, using CA extensions:
620
621  openssl ca -in req.pem -extensions v3_ca -out newcert.pem
622
623 Generate a CRL
624
625  openssl ca -gencrl -out crl.pem
626
627 Sign several requests:
628
629  openssl ca -infiles req1.pem req2.pem req3.pem
630
631 Certify a Netscape SPKAC:
632
633  openssl ca -spkac spkac.txt
634
635 A sample SPKAC file (the SPKAC line has been truncated for clarity):
636
637  SPKAC=MIG0MGAwXDANBgkqhkiG9w0BAQEFAANLADBIAkEAn7PDhCeV/xIxUg8V70YRxK2A5
638  CN=Steve Test
639  emailAddress=steve@openssl.org
640  0.OU=OpenSSL Group
641  1.OU=Another Group
642
643 A sample configuration file with the relevant sections for B<ca>:
644
645  [ ca ]
646  default_ca      = CA_default            # The default ca section
647
648  [ CA_default ]
649
650  dir            = ./demoCA              # top dir
651  database       = $dir/index.txt        # index file.
652  new_certs_dir  = $dir/newcerts         # new certs dir
653
654  certificate    = $dir/cacert.pem       # The CA cert
655  serial         = $dir/serial           # serial no file
656  #rand_serial    = yes                  # for random serial#'s
657  private_key    = $dir/private/cakey.pem# CA private key
658  RANDFILE       = $dir/private/.rand    # random number file
659
660  default_days   = 365                   # how long to certify for
661  default_crl_days= 30                   # how long before next CRL
662  default_md     = md5                   # md to use
663
664  policy         = policy_any            # default policy
665  email_in_dn    = no                    # Don't add the email into cert DN
666
667  name_opt       = ca_default            # Subject name display option
668  cert_opt       = ca_default            # Certificate display option
669  copy_extensions = none                 # Don't copy extensions from request
670
671  [ policy_any ]
672  countryName            = supplied
673  stateOrProvinceName    = optional
674  organizationName       = optional
675  organizationalUnitName = optional
676  commonName             = supplied
677  emailAddress           = optional
678
679 =head1 FILES
680
681 Note: the location of all files can change either by compile time options,
682 configuration file entries, environment variables or command line options.
683 The values below reflect the default values.
684
685  /usr/local/ssl/lib/openssl.cnf - master configuration file
686  ./demoCA                       - main CA directory
687  ./demoCA/cacert.pem            - CA certificate
688  ./demoCA/private/cakey.pem     - CA private key
689  ./demoCA/serial                - CA serial number file
690  ./demoCA/serial.old            - CA serial number backup file
691  ./demoCA/index.txt             - CA text database file
692  ./demoCA/index.txt.old         - CA text database backup file
693  ./demoCA/certs                 - certificate output file
694  ./demoCA/.rnd                  - CA random seed information
695
696 =head1 RESTRICTIONS
697
698 The text database index file is a critical part of the process and
699 if corrupted it can be difficult to fix. It is theoretically possible
700 to rebuild the index file from all the issued certificates and a current
701 CRL: however there is no option to do this.
702
703 V2 CRL features like delta CRLs are not currently supported.
704
705 Although several requests can be input and handled at once it is only
706 possible to include one SPKAC or self-signed certificate.
707
708 =head1 BUGS
709
710 The use of an in-memory text database can cause problems when large
711 numbers of certificates are present because, as the name implies
712 the database has to be kept in memory.
713
714 The B<ca> command really needs rewriting or the required functionality
715 exposed at either a command or interface level so a more friendly utility
716 (perl script or GUI) can handle things properly. The script
717 B<CA.pl> helps a little but not very much.
718
719 Any fields in a request that are not present in a policy are silently
720 deleted. This does not happen if the B<-preserveDN> option is used. To
721 enforce the absence of the EMAIL field within the DN, as suggested by
722 RFCs, regardless the contents of the request' subject the B<-noemailDN>
723 option can be used. The behaviour should be more friendly and
724 configurable.
725
726 Canceling some commands by refusing to certify a certificate can
727 create an empty file.
728
729 =head1 WARNINGS
730
731 The B<ca> command is quirky and at times downright unfriendly.
732
733 The B<ca> utility was originally meant as an example of how to do things
734 in a CA. It was not supposed to be used as a full blown CA itself:
735 nevertheless some people are using it for this purpose.
736
737 The B<ca> command is effectively a single user command: no locking is
738 done on the various files and attempts to run more than one B<ca> command
739 on the same database can have unpredictable results.
740
741 The B<copy_extensions> option should be used with caution. If care is
742 not taken then it can be a security risk. For example if a certificate
743 request contains a basicConstraints extension with CA:TRUE and the
744 B<copy_extensions> value is set to B<copyall> and the user does not spot
745 this when the certificate is displayed then this will hand the requester
746 a valid CA certificate.
747
748 This situation can be avoided by setting B<copy_extensions> to B<copy>
749 and including basicConstraints with CA:FALSE in the configuration file.
750 Then if the request contains a basicConstraints extension it will be
751 ignored.
752
753 It is advisable to also include values for other extensions such
754 as B<keyUsage> to prevent a request supplying its own values.
755
756 Additional restrictions can be placed on the CA certificate itself.
757 For example if the CA certificate has:
758
759  basicConstraints = CA:TRUE, pathlen:0
760
761 then even if a certificate is issued with CA:TRUE it will not be valid.
762
763 =head1 HISTORY
764
765 Since OpenSSL 1.1.1, the program follows RFC5280. Specifically,
766 certificate validity period (specified by any of B<-startdate>,
767 B<-enddate> and B<-days>) will be encoded as UTCTime if the dates are
768 earlier than year 2049 (included), and as GeneralizedTime if the dates
769 are in year 2050 or later.
770
771 =head1 SEE ALSO
772
773 L<req(1)>, L<spkac(1)>, L<x509(1)>, L<CA.pl(1)>,
774 L<config(5)>, L<x509v3_config(5)>
775
776 =head1 COPYRIGHT
777
778 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
779
780 Licensed under the Apache License 2.0 (the "License").  You may not use
781 this file except in compliance with the License.  You can obtain a copy
782 in the file LICENSE in the source distribution or at
783 L<https://www.openssl.org/source/license.html>.
784
785 =cut