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