ca.pod 22.8 KB
Newer Older
1 2 3 4 5 6 7 8 9
=pod

=head1 NAME

ca - sample minimal CA application

=head1 SYNOPSIS

B<openssl> B<ca>
10
[B<-help>]
11 12 13 14 15
[B<-verbose>]
[B<-config filename>]
[B<-name section>]
[B<-gencrl>]
[B<-revoke file>]
16
[B<-valid file>]
17 18
[B<-status serial>]
[B<-updatedb>]
D
Dr. Stephen Henson 已提交
19 20 21 22
[B<-crl_reason reason>]
[B<-crl_hold instruction>]
[B<-crl_compromise time>]
[B<-crl_CA_compromise time>]
23 24 25 26 27 28 29 30 31
[B<-crldays days>]
[B<-crlhours hours>]
[B<-crlexts section>]
[B<-startdate date>]
[B<-enddate date>]
[B<-days arg>]
[B<-md arg>]
[B<-policy arg>]
[B<-keyfile arg>]
32
[B<-keyform PEM|DER>]
33
[B<-key arg>]
34
[B<-passin arg>]
35
[B<-cert file>]
36
[B<-selfsign>]
37 38
[B<-in file>]
[B<-out file>]
D
 
Dr. Stephen Henson 已提交
39
[B<-notext>]
40 41 42 43 44
[B<-outdir dir>]
[B<-infiles>]
[B<-spkac file>]
[B<-ss_cert file>]
[B<-preserveDN>]
45
[B<-noemailDN>]
46 47 48
[B<-batch>]
[B<-msie_hack>]
[B<-extensions section>]
49
[B<-extfile section>]
50
[B<-engine id>]
51 52
[B<-subj arg>]
[B<-utf8>]
A
A J Mohan Rao 已提交
53
[B<-create_serial>]
54
[B<-multivalue-rdn>]
55 56 57 58 59 60 61 62 63 64

=head1 DESCRIPTION

The B<ca> command is a minimal CA application. It can be used
to sign certificate requests in a variety of forms and generate
CRLs it also maintains a text database of issued certificates
and their status.

The options descriptions will be divided into each purpose.

R
Rich Salz 已提交
65
=head1 OPTIONS
66 67 68

=over 4

A
A J Mohan Rao 已提交
69 70 71 72 73 74
=item B<-help>

Print out a usage message.

=item B<-verbose>

P
Pauli 已提交
75
This prints extra details about the operations being performed.
A
A J Mohan Rao 已提交
76

77 78
=item B<-config filename>

P
Pauli 已提交
79
Specifies the configuration file to use.
80 81
Optional; for a description of the default value,
see L<openssl(1)/COMMAND SUMMARY>.
82

83 84
=item B<-name section>

P
Pauli 已提交
85
Specifies the configuration file section to use (overrides
86 87
B<default_ca> in the B<ca> section).

88 89
=item B<-in filename>

P
Pauli 已提交
90
An input filename containing a single certificate request to be
91 92 93 94
signed by the CA.

=item B<-ss_cert filename>

P
Pauli 已提交
95
A single self-signed certificate to be signed by the CA.
96 97 98

=item B<-spkac filename>

P
Pauli 已提交
99
A file containing a single Netscape signed public key and challenge
D
Dr. Stephen Henson 已提交
100
and additional field values to be signed by the CA. See the B<SPKAC FORMAT>
101
section for information on the required input and output format.
102 103 104

=item B<-infiles>

P
Pauli 已提交
105
If present this should be the last option, all subsequent arguments
R
Rich Salz 已提交
106
are taken as the names of files containing certificate requests.
107 108 109

=item B<-out filename>

P
Pauli 已提交
110
The output file to output certificates to. The default is standard
111
output. The certificate details will also be printed out to this
112
file in PEM format (except that B<-spkac> outputs DER format).
113 114 115

=item B<-outdir directory>

P
Pauli 已提交
116
The directory to output certificates to. The certificate will be
117 118 119 120 121
written to a filename consisting of the serial number in hex with
".pem" appended.

=item B<-cert>

P
Pauli 已提交
122
The CA certificate file.
123 124 125

=item B<-keyfile filename>

P
Pauli 已提交
126
The private key to sign requests with.
127

128 129
=item B<-keyform PEM|DER>

P
Pauli 已提交
130
The format of the data in the private key file.
131 132
The default is PEM.

133 134
=item B<-key password>

P
Pauli 已提交
135
The password used to encrypt the private key. Since on some
136 137 138
systems the command line arguments are visible (e.g. Unix with
the 'ps' utility) this option should be used with caution.

139 140
=item B<-selfsign>

P
Pauli 已提交
141
Indicates the issued certificates are to be signed with the key
142
the certificate requests were signed with (given with B<-keyfile>).
R
Rich Salz 已提交
143
Certificate requests signed with a different key are ignored.  If
144 145 146 147 148 149 150 151 152
B<-spkac>, B<-ss_cert> or B<-gencrl> are given, B<-selfsign> is
ignored.

A consequence of using B<-selfsign> is that the self-signed
certificate appears among the entries in the certificate database
(see the configuration option B<database>), and uses the same
serial number counter as all other certificates sign with the
self-signed certificate.

153 154
=item B<-passin arg>

P
Pauli 已提交
155
The key password source. For more information about the format of B<arg>
R
Rich Salz 已提交
156
see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
157

D
 
Dr. Stephen Henson 已提交
158 159
=item B<-notext>

P
Pauli 已提交
160
Don't output the text form of a certificate to the output file.
D
 
Dr. Stephen Henson 已提交
161

162 163
=item B<-startdate date>

P
Pauli 已提交
164
This allows the start date to be explicitly set. The format of the
165 166 167 168
date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure).

=item B<-enddate date>

P
Pauli 已提交
169
This allows the expiry date to be explicitly set. The format of the
170 171 172 173
date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure).

=item B<-days arg>

P
Pauli 已提交
174
The number of days to certify the certificate for.
175 176 177

=item B<-md alg>

P
Pauli 已提交
178
The message digest to use.
R
Rich Salz 已提交
179
Any digest supported by the OpenSSL B<dgst> command can be used.
180 181 182 183
This option also applies to CRLs.

=item B<-policy arg>

P
Pauli 已提交
184
This option defines the CA "policy" to use. This is a section in
185 186 187 188 189 190
the configuration file which decides which fields should be mandatory
or match the CA certificate. Check out the B<POLICY FORMAT> section
for more information.

=item B<-msie_hack>

P
Pauli 已提交
191
This is a legacy option to make B<ca> work with very old versions of
192 193 194 195 196 197 198
the IE certificate enrollment control "certenr3". It used UniversalStrings
for almost everything. Since the old control has various security bugs
its use is strongly discouraged. The newer control "Xenroll" does not
need this option.

=item B<-preserveDN>

199
Normally the DN order of a certificate is the same as the order of the
R
Rich Salz 已提交
200
fields in the relevant policy section. When this option is set the order
201
is the same as the request. This is largely for compatibility with the
202 203
older IE enrollment control which would only accept certificates if their
DNs match the order of the request. This is not needed for Xenroll.
204

205 206 207 208 209 210 211 212 213
=item B<-noemailDN>

The DN of a certificate can contain the EMAIL field if present in the
request DN, however it is good policy just having the e-mail set into
the altName extension of the certificate. When this option is set the
EMAIL field is removed from the certificate' subject and set only in
the, eventually present, extensions. The B<email_in_dn> keyword can be
used in the configuration file to enable this behaviour.

214 215
=item B<-batch>

P
Pauli 已提交
216
This sets the batch mode. In this mode no questions will be asked
217 218 219 220
and all certificates will be certified automatically.

=item B<-extensions section>

P
Pauli 已提交
221
The section of the configuration file containing certificate extensions
222 223 224
to be added when a certificate is issued (defaults to B<x509_extensions>
unless the B<-extfile> option is used). If no extension section is
present then, a V1 certificate is created. If the extension section
225
is present (even if it is empty), then a V3 certificate is created. See the:w
R
Rich Salz 已提交
226
L<x509v3_config(5)> manual page for details of the
227
extension section format.
228 229 230

=item B<-extfile file>

P
Pauli 已提交
231
An additional configuration file to read certificate extensions from
232 233
(using the default section unless the B<-extensions> option is also
used).
234

235 236
=item B<-engine id>

P
Pauli 已提交
237
Specifying an engine (by its unique B<id> string) will cause B<ca>
238 239 240 241
to attempt to obtain a functional reference to the specified engine,
thus initialising it if needed. The engine will then be set as the default
for all available algorithms.

242 243
=item B<-subj arg>

P
Pauli 已提交
244
Supersedes subject name given in the request.
245 246 247 248 249
The arg must be formatted as I</type0=value0/type1=value1/type2=...>,
characters may be escaped by \ (backslash), no spaces are skipped.

=item B<-utf8>

P
Pauli 已提交
250
This option causes field values to be interpreted as UTF8 strings, by
251 252 253 254
default they are interpreted as ASCII. This means that the field
values, whether prompted from a terminal or obtained from a
configuration file, must be valid UTF8 strings.

A
A J Mohan Rao 已提交
255 256
=item B<-create_serial>

P
Pauli 已提交
257
If reading serial from the text file as specified in the configuration
A
A J Mohan Rao 已提交
258 259 260
fails, specifying this option creates a new random serial to be used as next
serial number.

261 262
=item B<-multivalue-rdn>

A
Alok Menghrajani 已提交
263
This option causes the -subj argument to be interpreted with full
264 265 266 267 268 269
support for multivalued RDNs. Example:

I</DC=org/DC=OpenSSL/DC=users/UID=123456+CN=John Doe>

If -multi-rdn is not used then the UID value is I<123456+CN=John Doe>.

270 271 272 273 274 275 276 277
=back

=head1 CRL OPTIONS

=over 4

=item B<-gencrl>

P
Pauli 已提交
278
This option generates a CRL based on information in the index file.
279 280 281

=item B<-crldays num>

P
Pauli 已提交
282
The number of days before the next CRL is due. That is the days from
283 284 285 286
now to place in the CRL nextUpdate field.

=item B<-crlhours num>

P
Pauli 已提交
287
The number of hours before the next CRL is due.
288 289 290

=item B<-revoke filename>

P
Pauli 已提交
291
A filename containing a certificate to revoke.
292

293 294
=item B<-valid filename>

P
Pauli 已提交
295
A filename containing a certificate to add a Valid certificate entry.
296

297 298
=item B<-status serial>

P
Pauli 已提交
299
Displays the revocation status of the certificate with the specified
300 301 302 303 304 305
serial number and exits.

=item B<-updatedb>

Updates the database index to purge expired certificates.

D
Dr. Stephen Henson 已提交
306 307
=item B<-crl_reason reason>

P
Pauli 已提交
308
Revocation reason, where B<reason> is one of: B<unspecified>, B<keyCompromise>,
D
Dr. Stephen Henson 已提交
309 310 311 312
B<CACompromise>, B<affiliationChanged>, B<superseded>, B<cessationOfOperation>,
B<certificateHold> or B<removeFromCRL>. The matching of B<reason> is case
insensitive. Setting any revocation reason will make the CRL v2.

R
Rich Salz 已提交
313
In practice B<removeFromCRL> is not particularly useful because it is only used
D
Dr. Stephen Henson 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
in delta CRLs which are not currently implemented.

=item B<-crl_hold instruction>

This sets the CRL revocation reason code to B<certificateHold> and the hold
instruction to B<instruction> which must be an OID. Although any OID can be
used only B<holdInstructionNone> (the use of which is discouraged by RFC2459)
B<holdInstructionCallIssuer> or B<holdInstructionReject> will normally be used.

=item B<-crl_compromise time>

This sets the revocation reason to B<keyCompromise> and the compromise time to
B<time>. B<time> should be in GeneralizedTime format that is B<YYYYMMDDHHMMSSZ>.

=item B<-crl_CA_compromise time>

This is the same as B<crl_compromise> except the revocation reason is set to
B<CACompromise>.

333 334
=item B<-crlexts section>

P
Pauli 已提交
335
The section of the configuration file containing CRL extensions to
336 337 338 339
include. If no CRL extension section is present then a V1 CRL is
created, if the CRL extension section is present (even if it is
empty) then a V2 CRL is created. The CRL extensions specified are
CRL extensions and B<not> CRL entry extensions.  It should be noted
340
that some software (for example Netscape) can't handle V2 CRLs. See
R
Rich Salz 已提交
341
L<x509v3_config(5)> manual page for details of the
342
extension section format.
343 344 345 346 347

=back

=head1 CONFIGURATION FILE OPTIONS

348 349 350 351 352 353 354 355 356 357 358 359 360 361
The section of the configuration file containing options for B<ca>
is found as follows: If the B<-name> command line option is used,
then it names the section to be used. Otherwise the section to
be used must be named in the B<default_ca> option of the B<ca> section
of the configuration file (or in the default section of the
configuration file). Besides B<default_ca>, the following options are
read directly from the B<ca> section:
 RANDFILE
 preserve
 msie_hack
With the exception of B<RANDFILE>, this is probably a bug and may
change in future releases.

Many of the configuration file options are identical to command line
362 363 364 365 366 367 368 369
options. Where the option is present in the configuration file
and the command line the command line value is used. Where an
option is described as mandatory then it must be present in
the configuration file or the command line equivalent (if
any) used.

=over 4

370 371 372 373 374
=item B<oid_file>

This specifies a file containing additional B<OBJECT IDENTIFIERS>.
Each line of the file should consist of the numerical form of the
object identifier followed by white space then the short name followed
R
Rich Salz 已提交
375
by white space and finally the long name.
376 377 378 379 380 381 382 383

=item B<oid_section>

This specifies a section in the configuration file containing extra
object identifiers. Each line should consist of the short name of the
object identifier followed by B<=> and the numerical form. The short
and long names are the same when this option is used.

384 385
=item B<new_certs_dir>

P
Pauli 已提交
386
The same as the B<-outdir> command line option. It specifies
387 388 389 390
the directory where new certificates will be placed. Mandatory.

=item B<certificate>

P
Pauli 已提交
391
The same as B<-cert>. It gives the file containing the CA
392 393 394 395
certificate. Mandatory.

=item B<private_key>

P
Pauli 已提交
396
Same as the B<-keyfile> option. The file containing the
397 398 399 400
CA private key. Mandatory.

=item B<RANDFILE>

P
Pauli 已提交
401
A file used to read and write random number seed information, or
R
Rich Salz 已提交
402
an EGD socket (see L<RAND_egd(3)>).
403 404 405

=item B<default_days>

P
Pauli 已提交
406
The same as the B<-days> option. The number of days to certify
R
Rich Salz 已提交
407
a certificate for.
408 409 410

=item B<default_startdate>

P
Pauli 已提交
411
The same as the B<-startdate> option. The start date to certify
412 413 414 415
a certificate for. If not set the current time is used.

=item B<default_enddate>

P
Pauli 已提交
416
The same as the B<-enddate> option. Either this option or
417 418 419 420 421
B<default_days> (or the command line equivalents) must be
present.

=item B<default_crl_hours default_crl_days>

P
Pauli 已提交
422
The same as the B<-crlhours> and the B<-crldays> options. These
423 424 425 426 427
will only be used if neither command line option is present. At
least one of these must be present to generate a CRL.

=item B<default_md>

P
Pauli 已提交
428
The same as the B<-md> option. Mandatory.
429 430 431

=item B<database>

P
Pauli 已提交
432
The text database file to use. Mandatory. This file must be present
433 434
though initially it will be empty.

435 436
=item B<unique_subject>

P
Pauli 已提交
437
If the value B<yes> is given, the valid certificate entries in the
438 439 440 441 442 443 444
database must have unique subjects.  if the value B<no> is given,
several valid certificate entries may have the exact same subject.
The default value is B<yes>, to be compatible with older (pre 0.9.8)
versions of OpenSSL.  However, to make CA certificate roll-over easier,
it's recommended to use the value B<no>, especially if combined with
the B<-selfsign> command line option.

R
Typo.  
Richard Levitte 已提交
445
=item B<serial>
446

P
Pauli 已提交
447
A text file containing the next serial number to use in hex. Mandatory.
448 449
This file must be present and contain a valid serial number.

450 451
=item B<crlnumber>

P
Pauli 已提交
452
A text file containing the next CRL number to use in hex. The crl number
453 454 455
will be inserted in the CRLs only if this file exists. If this file is
present, it must contain a valid CRL number.

456 457
=item B<x509_extensions>

P
Pauli 已提交
458
The same as B<-extensions>.
459 460 461

=item B<crl_extensions>

P
Pauli 已提交
462
The same as B<-crlexts>.
463 464 465

=item B<preserve>

P
Pauli 已提交
466
The same as B<-preserveDN>
467

468 469
=item B<email_in_dn>

P
Pauli 已提交
470
The same as B<-noemailDN>. If you want the EMAIL field to be removed
471 472 473
from the DN of the certificate simply set this to 'no'. If not present
the default is to allow for the EMAIL filed in the certificate's DN.

474 475
=item B<msie_hack>

P
Pauli 已提交
476
The same as B<-msie_hack>
477 478 479

=item B<policy>

P
Pauli 已提交
480
The same as B<-policy>. Mandatory. See the B<POLICY FORMAT> section
481 482
for more information.

R
Richard Levitte 已提交
483
=item B<name_opt>, B<cert_opt>
484

P
Pauli 已提交
485
These options allow the format used to display the certificate details
486 487 488 489 490 491
when asking the user to confirm signing. All the options supported by
the B<x509> utilities B<-nameopt> and B<-certopt> switches can be used
here, except the B<no_signame> and B<no_sigdump> are permanently set
and cannot be disabled (this is because the certificate signature cannot
be displayed because the certificate has not been signed at this point).

492
For convenience the values B<ca_default> are accepted by both to produce
493 494 495 496 497 498 499
a reasonable output.

If neither option is present the format used in earlier versions of
OpenSSL is used. Use of the old format is B<strongly> discouraged because
it only displays fields mentioned in the B<policy> section, mishandles
multicharacter string types and does not display extensions.

500 501
=item B<copy_extensions>

P
Pauli 已提交
502
Determines how extensions in certificate requests should be handled.
503 504 505 506 507 508 509 510 511 512 513
If set to B<none> or this option is not present then extensions are
ignored and not copied to the certificate. If set to B<copy> then any
extensions present in the request that are not already present are copied
to the certificate. If set to B<copyall> then all extensions in the
request are copied to the certificate: if the extension is already present
in the certificate it is deleted first. See the B<WARNINGS> section before
using this option.

The main use of this option is to allow a certificate request to supply
values for certain extensions such as subjectAltName.

514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
=back

=head1 POLICY FORMAT

The policy section consists of a set of variables corresponding to
certificate DN fields. If the value is "match" then the field value
must match the same field in the CA certificate. If the value is
"supplied" then it must be present. If the value is "optional" then
it may be present. Any fields not mentioned in the policy section
are silently deleted, unless the B<-preserveDN> option is set but
this can be regarded more of a quirk than intended behaviour.

=head1 SPKAC FORMAT

The input to the B<-spkac> command line option is a Netscape
signed public key and challenge. This will usually come from
R
Rich Salz 已提交
530
the B<KEYGEN> tag in an HTML form to create a new private key.
531 532 533 534 535 536 537
It is however possible to create SPKACs using the B<spkac> utility.

The file should contain the variable SPKAC set to the value of
the SPKAC and also the required DN components as name value pairs.
If you need to include the same component twice then it can be
preceded by a number and a '.'.

538 539 540 541
When processing SPKAC format, the output is DER if the B<-out>
flag is used, but PEM format if sending to stdout or the B<-outdir>
flag is used.

542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
=head1 EXAMPLES

Note: these examples assume that the B<ca> directory structure is
already set up and the relevant files already exist. This usually
involves creating a CA certificate and private key with B<req>, a
serial number file and an empty index file and placing them in
the relevant directories.

To use the sample configuration file below the directories demoCA,
demoCA/private and demoCA/newcerts would be created. The CA
certificate would be copied to demoCA/cacert.pem and its private
key to demoCA/private/cakey.pem. A file demoCA/serial would be
created containing for example "01" and the empty index file
demoCA/index.txt.


Sign a certificate request:

560
 openssl ca -in req.pem -out newcert.pem
561

562 563 564 565
Sign a certificate request, using CA extensions:

 openssl ca -in req.pem -extensions v3_ca -out newcert.pem

566 567
Generate a CRL

568
 openssl ca -gencrl -out crl.pem
569 570 571

Sign several requests:

572
 openssl ca -infiles req1.pem req2.pem req3.pem
573 574 575

Certify a Netscape SPKAC:

576
 openssl ca -spkac spkac.txt
577 578 579 580 581 582 583 584 585 586 587 588 589

A sample SPKAC file (the SPKAC line has been truncated for clarity):

 SPKAC=MIG0MGAwXDANBgkqhkiG9w0BAQEFAANLADBIAkEAn7PDhCeV/xIxUg8V70YRxK2A5
 CN=Steve Test
 emailAddress=steve@openssl.org
 0.OU=OpenSSL Group
 1.OU=Another Group

A sample configuration file with the relevant sections for B<ca>:

 [ ca ]
 default_ca      = CA_default            # The default ca section
R
Rich Salz 已提交
590

591 592 593 594
 [ CA_default ]

 dir            = ./demoCA              # top dir
 database       = $dir/index.txt        # index file.
R
Rich Salz 已提交
595 596
 new_certs_dir  = $dir/newcerts         # new certs dir

597 598 599 600
 certificate    = $dir/cacert.pem       # The CA cert
 serial         = $dir/serial           # serial no file
 private_key    = $dir/private/cakey.pem# CA private key
 RANDFILE       = $dir/private/.rand    # random number file
R
Rich Salz 已提交
601

602 603 604 605 606
 default_days   = 365                   # how long to certify for
 default_crl_days= 30                   # how long before next CRL
 default_md     = md5                   # md to use

 policy         = policy_any            # default policy
607
 email_in_dn    = no                    # Don't add the email into cert DN
608

R
Rich Salz 已提交
609 610 611
 name_opt       = ca_default            # Subject name display option
 cert_opt       = ca_default            # Certificate display option
 copy_extensions = none                 # Don't copy extensions from request
612

613 614 615 616 617 618 619 620 621 622 623
 [ policy_any ]
 countryName            = supplied
 stateOrProvinceName    = optional
 organizationName       = optional
 organizationalUnitName = optional
 commonName             = supplied
 emailAddress           = optional

=head1 FILES

Note: the location of all files can change either by compile time options,
624
configuration file entries, environment variables or command line options.
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
The values below reflect the default values.

 /usr/local/ssl/lib/openssl.cnf - master configuration file
 ./demoCA                       - main CA directory
 ./demoCA/cacert.pem            - CA certificate
 ./demoCA/private/cakey.pem     - CA private key
 ./demoCA/serial                - CA serial number file
 ./demoCA/serial.old            - CA serial number backup file
 ./demoCA/index.txt             - CA text database file
 ./demoCA/index.txt.old         - CA text database backup file
 ./demoCA/certs                 - certificate output file
 ./demoCA/.rnd                  - CA random seed information

=head1 RESTRICTIONS

R
Rich Salz 已提交
640
The text database index file is a critical part of the process and
641 642 643 644
if corrupted it can be difficult to fix. It is theoretically possible
to rebuild the index file from all the issued certificates and a current
CRL: however there is no option to do this.

D
Dr. Stephen Henson 已提交
645
V2 CRL features like delta CRLs are not currently supported.
646 647

Although several requests can be input and handled at once it is only
F
FdaSilvaYY 已提交
648
possible to include one SPKAC or self-signed certificate.
649 650 651

=head1 BUGS

F
FdaSilvaYY 已提交
652
The use of an in-memory text database can cause problems when large
653 654 655 656 657
numbers of certificates are present because, as the name implies
the database has to be kept in memory.

The B<ca> command really needs rewriting or the required functionality
exposed at either a command or interface level so a more friendly utility
R
Rich Salz 已提交
658 659
(perl script or GUI) can handle things properly. The script
B<CA.pl> helps a little but not very much.
660 661

Any fields in a request that are not present in a policy are silently
662 663 664 665 666
deleted. This does not happen if the B<-preserveDN> option is used. To
enforce the absence of the EMAIL field within the DN, as suggested by
RFCs, regardless the contents of the request' subject the B<-noemailDN>
option can be used. The behaviour should be more friendly and
configurable.
667

R
Rich Salz 已提交
668
Canceling some commands by refusing to certify a certificate can
669 670
create an empty file.

671 672
=head1 WARNINGS

L
Lutz Jänicke 已提交
673 674 675 676 677 678 679 680 681 682
The B<ca> command is quirky and at times downright unfriendly.

The B<ca> utility was originally meant as an example of how to do things
in a CA. It was not supposed to be used as a full blown CA itself:
nevertheless some people are using it for this purpose.

The B<ca> command is effectively a single user command: no locking is
done on the various files and attempts to run more than one B<ca> command
on the same database can have unpredictable results.

683 684 685 686
The B<copy_extensions> option should be used with caution. If care is
not taken then it can be a security risk. For example if a certificate
request contains a basicConstraints extension with CA:TRUE and the
B<copy_extensions> value is set to B<copyall> and the user does not spot
R
Rich Salz 已提交
687
this when the certificate is displayed then this will hand the requester
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
a valid CA certificate.

This situation can be avoided by setting B<copy_extensions> to B<copy>
and including basicConstraints with CA:FALSE in the configuration file.
Then if the request contains a basicConstraints extension it will be
ignored.

It is advisable to also include values for other extensions such
as B<keyUsage> to prevent a request supplying its own values.

Additional restrictions can be placed on the CA certificate itself.
For example if the CA certificate has:

 basicConstraints = CA:TRUE, pathlen:0

then even if a certificate is issued with CA:TRUE it will not be valid.

705 706
=head1 SEE ALSO

R
Rich Salz 已提交
707
L<req(1)>, L<spkac(1)>, L<x509(1)>, L<CA.pl(1)>,
R
Rich Salz 已提交
708
L<config(5)>, L<x509v3_config(5)>
709

R
Rich Salz 已提交
710 711
=head1 COPYRIGHT

P
Pauli 已提交
712
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
R
Rich Salz 已提交
713 714 715 716 717 718 719

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut