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