ca.pod 23.2 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>]
R
Rich Salz 已提交
55 56
[B<-rand file...>]
[B<-writerand file>]
57 58 59 60 61 62 63 64 65 66

=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 已提交
67
=head1 OPTIONS
68 69 70

=over 4

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

Print out a usage message.

=item B<-verbose>

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

79 80
=item B<-config filename>

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

85 86
=item B<-name section>

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

90 91
=item B<-in filename>

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

=item B<-ss_cert filename>

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

=item B<-spkac filename>

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

=item B<-infiles>

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

=item B<-out filename>

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

=item B<-outdir directory>

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

=item B<-cert>

P
Pauli 已提交
124
The CA certificate file.
125 126 127

=item B<-keyfile filename>

P
Pauli 已提交
128
The private key to sign requests with.
129

130 131
=item B<-keyform PEM|DER>

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

135 136
=item B<-key password>

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

141 142
=item B<-selfsign>

P
Pauli 已提交
143
Indicates the issued certificates are to be signed with the key
144
the certificate requests were signed with (given with B<-keyfile>).
R
Rich Salz 已提交
145
Certificate requests signed with a different key are ignored.  If
146 147 148 149 150 151 152 153 154
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.

155 156
=item B<-passin arg>

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

D
 
Dr. Stephen Henson 已提交
160 161
=item B<-notext>

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

164 165
=item B<-startdate date>

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

=item B<-enddate date>

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

=item B<-days arg>

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

=item B<-md alg>

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

=item B<-policy arg>

P
Pauli 已提交
186
This option defines the CA "policy" to use. This is a section in
187 188 189 190 191 192
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>

R
Rich Salz 已提交
193
This is a deprecated option to make B<ca> work with very old versions of
194 195
the IE certificate enrollment control "certenr3". It used UniversalStrings
for almost everything. Since the old control has various security bugs
R
Rich Salz 已提交
196
its use is strongly discouraged.
197 198 199

=item B<-preserveDN>

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

206 207 208 209 210 211 212 213 214
=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.

215 216
=item B<-batch>

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

=item B<-extensions section>

P
Pauli 已提交
222
The section of the configuration file containing certificate extensions
223 224 225
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
226
is present (even if it is empty), then a V3 certificate is created. See the:w
R
Rich Salz 已提交
227
L<x509v3_config(5)> manual page for details of the
228
extension section format.
229 230 231

=item B<-extfile file>

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

236 237
=item B<-engine id>

P
Pauli 已提交
238
Specifying an engine (by its unique B<id> string) will cause B<ca>
239 240 241 242
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.

243 244
=item B<-subj arg>

P
Pauli 已提交
245
Supersedes subject name given in the request.
246 247 248 249 250
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 已提交
251
This option causes field values to be interpreted as UTF8 strings, by
252 253 254 255
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 已提交
256 257
=item B<-create_serial>

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

262 263
=item B<-multivalue-rdn>

A
Alok Menghrajani 已提交
264
This option causes the -subj argument to be interpreted with full
265 266 267 268 269 270
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>.

R
Rich Salz 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283
=item B<-rand file...>

A file or files containing random data used to seed the random number
generator.
Multiple files can be specified separated by an OS-dependent character.
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
all others.

=item [B<-writerand file>]

Writes random data to the specified I<file> upon exit.
This can be used with a subsequent B<-rand> flag.

284 285 286 287 288 289 290 291
=back

=head1 CRL OPTIONS

=over 4

=item B<-gencrl>

P
Pauli 已提交
292
This option generates a CRL based on information in the index file.
293 294 295

=item B<-crldays num>

P
Pauli 已提交
296
The number of days before the next CRL is due. That is the days from
297 298 299 300
now to place in the CRL nextUpdate field.

=item B<-crlhours num>

P
Pauli 已提交
301
The number of hours before the next CRL is due.
302 303 304

=item B<-revoke filename>

P
Pauli 已提交
305
A filename containing a certificate to revoke.
306

307 308
=item B<-valid filename>

P
Pauli 已提交
309
A filename containing a certificate to add a Valid certificate entry.
310

311 312
=item B<-status serial>

P
Pauli 已提交
313
Displays the revocation status of the certificate with the specified
314 315 316 317 318 319
serial number and exits.

=item B<-updatedb>

Updates the database index to purge expired certificates.

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

P
Pauli 已提交
322
Revocation reason, where B<reason> is one of: B<unspecified>, B<keyCompromise>,
D
Dr. Stephen Henson 已提交
323 324 325 326
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 已提交
327
In practice B<removeFromCRL> is not particularly useful because it is only used
D
Dr. Stephen Henson 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
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>.

347 348
=item B<-crlexts section>

P
Pauli 已提交
349
The section of the configuration file containing CRL extensions to
350 351 352 353
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
354
that some software (for example Netscape) can't handle V2 CRLs. See
R
Rich Salz 已提交
355
L<x509v3_config(5)> manual page for details of the
356
extension section format.
357 358 359 360 361

=back

=head1 CONFIGURATION FILE OPTIONS

362 363 364 365 366 367 368 369 370 371 372 373 374 375
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
376 377 378 379 380 381 382 383
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

384 385 386 387 388
=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 已提交
389
by white space and finally the long name.
390 391 392 393 394 395 396 397

=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.

398 399
=item B<new_certs_dir>

P
Pauli 已提交
400
The same as the B<-outdir> command line option. It specifies
401 402 403 404
the directory where new certificates will be placed. Mandatory.

=item B<certificate>

P
Pauli 已提交
405
The same as B<-cert>. It gives the file containing the CA
406 407 408 409
certificate. Mandatory.

=item B<private_key>

P
Pauli 已提交
410
Same as the B<-keyfile> option. The file containing the
411 412 413 414
CA private key. Mandatory.

=item B<RANDFILE>

R
Rich Salz 已提交
415 416
At startup the specified file is loaded into the random number generator,
and at exit 256 bytes will be written to it.
417 418 419

=item B<default_days>

P
Pauli 已提交
420
The same as the B<-days> option. The number of days to certify
R
Rich Salz 已提交
421
a certificate for.
422 423 424

=item B<default_startdate>

P
Pauli 已提交
425
The same as the B<-startdate> option. The start date to certify
426 427 428 429
a certificate for. If not set the current time is used.

=item B<default_enddate>

P
Pauli 已提交
430
The same as the B<-enddate> option. Either this option or
431 432 433 434 435
B<default_days> (or the command line equivalents) must be
present.

=item B<default_crl_hours default_crl_days>

P
Pauli 已提交
436
The same as the B<-crlhours> and the B<-crldays> options. These
437 438 439 440 441
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 已提交
442
The same as the B<-md> option. Mandatory.
443 444 445

=item B<database>

P
Pauli 已提交
446
The text database file to use. Mandatory. This file must be present
447 448
though initially it will be empty.

449 450
=item B<unique_subject>

P
Pauli 已提交
451
If the value B<yes> is given, the valid certificate entries in the
452 453 454 455 456 457 458
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 已提交
459
=item B<serial>
460

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

464 465
=item B<crlnumber>

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

470 471
=item B<x509_extensions>

P
Pauli 已提交
472
The same as B<-extensions>.
473 474 475

=item B<crl_extensions>

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

=item B<preserve>

P
Pauli 已提交
480
The same as B<-preserveDN>
481

482 483
=item B<email_in_dn>

P
Pauli 已提交
484
The same as B<-noemailDN>. If you want the EMAIL field to be removed
485 486 487
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.

488 489
=item B<msie_hack>

P
Pauli 已提交
490
The same as B<-msie_hack>
491 492 493

=item B<policy>

P
Pauli 已提交
494
The same as B<-policy>. Mandatory. See the B<POLICY FORMAT> section
495 496
for more information.

R
Richard Levitte 已提交
497
=item B<name_opt>, B<cert_opt>
498

P
Pauli 已提交
499
These options allow the format used to display the certificate details
500 501 502 503 504 505
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).

506
For convenience the values B<ca_default> are accepted by both to produce
507 508 509 510 511 512 513
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.

514 515
=item B<copy_extensions>

P
Pauli 已提交
516
Determines how extensions in certificate requests should be handled.
517 518 519 520 521 522 523 524 525 526 527
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.

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
=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 已提交
544
the B<KEYGEN> tag in an HTML form to create a new private key.
545 546 547 548 549 550 551
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 '.'.

552 553 554 555
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.

556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
=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:

574
 openssl ca -in req.pem -out newcert.pem
575

576 577 578 579
Sign a certificate request, using CA extensions:

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

580 581
Generate a CRL

582
 openssl ca -gencrl -out crl.pem
583 584 585

Sign several requests:

586
 openssl ca -infiles req1.pem req2.pem req3.pem
587 588 589

Certify a Netscape SPKAC:

590
 openssl ca -spkac spkac.txt
591 592 593 594 595 596 597 598 599 600 601 602 603

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 已提交
604

605 606 607 608
 [ CA_default ]

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

611 612 613 614
 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 已提交
615

616 617 618 619 620
 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
621
 email_in_dn    = no                    # Don't add the email into cert DN
622

R
Rich Salz 已提交
623 624 625
 name_opt       = ca_default            # Subject name display option
 cert_opt       = ca_default            # Certificate display option
 copy_extensions = none                 # Don't copy extensions from request
626

627 628 629 630 631 632 633 634 635 636 637
 [ 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,
638
configuration file entries, environment variables or command line options.
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
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 已提交
654
The text database index file is a critical part of the process and
655 656 657 658
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 已提交
659
V2 CRL features like delta CRLs are not currently supported.
660 661

Although several requests can be input and handled at once it is only
F
FdaSilvaYY 已提交
662
possible to include one SPKAC or self-signed certificate.
663 664 665

=head1 BUGS

F
FdaSilvaYY 已提交
666
The use of an in-memory text database can cause problems when large
667 668 669 670 671
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 已提交
672 673
(perl script or GUI) can handle things properly. The script
B<CA.pl> helps a little but not very much.
674 675

Any fields in a request that are not present in a policy are silently
676 677 678 679 680
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.
681

R
Rich Salz 已提交
682
Canceling some commands by refusing to certify a certificate can
683 684
create an empty file.

685 686
=head1 WARNINGS

L
Lutz Jänicke 已提交
687 688 689 690 691 692 693 694 695 696
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.

697 698 699 700
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 已提交
701
this when the certificate is displayed then this will hand the requester
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
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.

719 720
=head1 SEE ALSO

R
Rich Salz 已提交
721
L<req(1)>, L<spkac(1)>, L<x509(1)>, L<CA.pl(1)>,
R
Rich Salz 已提交
722
L<config(5)>, L<x509v3_config(5)>
723

R
Rich Salz 已提交
724 725
=head1 COPYRIGHT

P
Pauli 已提交
726
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
R
Rich Salz 已提交
727 728 729 730 731 732 733

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