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