6 ca - sample minimal CA application
16 [B<-crl_reason reason>]
17 [B<-crl_hold instruction>]
18 [B<-crl_compromise time>]
19 [B<-crl_CA_compromise time>]
45 [B<-extensions section>]
51 The B<ca> command is a minimal CA application. It can be used
52 to sign certificate requests in a variety of forms and generate
53 CRLs it also maintains a text database of issued certificates
56 The options descriptions will be divided into each purpose.
62 =item B<-config filename>
64 specifies the configuration file to use.
66 =item B<-name section>
68 specifies the configuration file section to use (overrides
69 B<default_ca> in the B<ca> section).
73 an input filename containing a single certificate request to be
76 =item B<-ss_cert filename>
78 a single self signed certificate to be signed by the CA.
80 =item B<-spkac filename>
82 a file containing a single Netscape signed public key and challenge
83 and additional field values to be signed by the CA. See the B<SPKAC FORMAT>
84 section for information on the required format.
88 if present this should be the last option, all subsequent arguments
89 are assumed to the the names of files containing certificate requests.
91 =item B<-out filename>
93 the output file to output certificates to. The default is standard
94 output. The certificate details will also be printed out to this
97 =item B<-outdir directory>
99 the directory to output certificates to. The certificate will be
100 written to a filename consisting of the serial number in hex with
105 the CA certificate file.
107 =item B<-keyfile filename>
109 the private key to sign requests with.
111 =item B<-key password>
113 the password used to encrypt the private key. Since on some
114 systems the command line arguments are visible (e.g. Unix with
115 the 'ps' utility) this option should be used with caution.
119 indicates the issued certificates are to be signed with the key
120 the certificate requests were signed with (given with B<-keyfile>).
121 Cerificate requests signed with a different key are ignored. If
122 B<-spkac>, B<-ss_cert> or B<-gencrl> are given, B<-selfsign> is
125 A consequence of using B<-selfsign> is that the self-signed
126 certificate appears among the entries in the certificate database
127 (see the configuration option B<database>), and uses the same
128 serial number counter as all other certificates sign with the
129 self-signed certificate.
133 the key password source. For more information about the format of B<arg>
134 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
138 this prints extra details about the operations being performed.
142 don't output the text form of a certificate to the output file.
144 =item B<-startdate date>
146 this allows the start date to be explicitly set. The format of the
147 date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure).
149 =item B<-enddate date>
151 this allows the expiry date to be explicitly set. The format of the
152 date is YYMMDDHHMMSSZ (the same as an ASN1 UTCTime structure).
156 the number of days to certify the certificate for.
160 the message digest to use. Possible values include md5, sha1 and mdc2.
161 This option also applies to CRLs.
165 this option defines the CA "policy" to use. This is a section in
166 the configuration file which decides which fields should be mandatory
167 or match the CA certificate. Check out the B<POLICY FORMAT> section
168 for more information.
172 this is a legacy option to make B<ca> work with very old versions of
173 the IE certificate enrollment control "certenr3". It used UniversalStrings
174 for almost everything. Since the old control has various security bugs
175 its use is strongly discouraged. The newer control "Xenroll" does not
180 Normally the DN order of a certificate is the same as the order of the
181 fields in the relevant policy section. When this option is set the order
182 is the same as the request. This is largely for compatibility with the
183 older IE enrollment control which would only accept certificates if their
184 DNs match the order of the request. This is not needed for Xenroll.
188 The DN of a certificate can contain the EMAIL field if present in the
189 request DN, however it is good policy just having the e-mail set into
190 the altName extension of the certificate. When this option is set the
191 EMAIL field is removed from the certificate' subject and set only in
192 the, eventually present, extensions. The B<email_in_dn> keyword can be
193 used in the configuration file to enable this behaviour.
197 this sets the batch mode. In this mode no questions will be asked
198 and all certificates will be certified automatically.
200 =item B<-extensions section>
202 the section of the configuration file containing certificate extensions
203 to be added when a certificate is issued (defaults to B<x509_extensions>
204 unless the B<-extfile> option is used). If no extension section is
205 present then, a V1 certificate is created. If the extension section
206 is present (even if it is empty), then a V3 certificate is created.
208 =item B<-extfile file>
210 an additional configuration file to read certificate extensions from
211 (using the default section unless the B<-extensions> option is also
216 specifying an engine (by it's unique B<id> string) will cause B<req>
217 to attempt to obtain a functional reference to the specified engine,
218 thus initialising it if needed. The engine will then be set as the default
219 for all available algorithms.
229 this option generates a CRL based on information in the index file.
231 =item B<-crldays num>
233 the number of days before the next CRL is due. That is the days from
234 now to place in the CRL nextUpdate field.
236 =item B<-crlhours num>
238 the number of hours before the next CRL is due.
240 =item B<-revoke filename>
242 a filename containing a certificate to revoke.
244 =item B<-crl_reason reason>
246 revocation reason, where B<reason> is one of: B<unspecified>, B<keyCompromise>,
247 B<CACompromise>, B<affiliationChanged>, B<superseded>, B<cessationOfOperation>,
248 B<certificateHold> or B<removeFromCRL>. The matching of B<reason> is case
249 insensitive. Setting any revocation reason will make the CRL v2.
251 In practive B<removeFromCRL> is not particularly useful because it is only used
252 in delta CRLs which are not currently implemented.
254 =item B<-crl_hold instruction>
256 This sets the CRL revocation reason code to B<certificateHold> and the hold
257 instruction to B<instruction> which must be an OID. Although any OID can be
258 used only B<holdInstructionNone> (the use of which is discouraged by RFC2459)
259 B<holdInstructionCallIssuer> or B<holdInstructionReject> will normally be used.
261 =item B<-crl_compromise time>
263 This sets the revocation reason to B<keyCompromise> and the compromise time to
264 B<time>. B<time> should be in GeneralizedTime format that is B<YYYYMMDDHHMMSSZ>.
266 =item B<-crl_CA_compromise time>
268 This is the same as B<crl_compromise> except the revocation reason is set to
273 supersedes subject name given in the request.
274 The arg must be formatted as I</type0=value0/type1=value1/type2=...>,
275 characters may be escaped by \ (backslash), no spaces are skipped.
277 =item B<-crlexts section>
279 the section of the configuration file containing CRL extensions to
280 include. If no CRL extension section is present then a V1 CRL is
281 created, if the CRL extension section is present (even if it is
282 empty) then a V2 CRL is created. The CRL extensions specified are
283 CRL extensions and B<not> CRL entry extensions. It should be noted
284 that some software (for example Netscape) can't handle V2 CRLs.
288 =head1 CONFIGURATION FILE OPTIONS
290 The section of the configuration file containing options for B<ca>
291 is found as follows: If the B<-name> command line option is used,
292 then it names the section to be used. Otherwise the section to
293 be used must be named in the B<default_ca> option of the B<ca> section
294 of the configuration file (or in the default section of the
295 configuration file). Besides B<default_ca>, the following options are
296 read directly from the B<ca> section:
300 With the exception of B<RANDFILE>, this is probably a bug and may
301 change in future releases.
303 Many of the configuration file options are identical to command line
304 options. Where the option is present in the configuration file
305 and the command line the command line value is used. Where an
306 option is described as mandatory then it must be present in
307 the configuration file or the command line equivalent (if
314 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
315 Each line of the file should consist of the numerical form of the
316 object identifier followed by white space then the short name followed
317 by white space and finally the long name.
321 This specifies a section in the configuration file containing extra
322 object identifiers. Each line should consist of the short name of the
323 object identifier followed by B<=> and the numerical form. The short
324 and long names are the same when this option is used.
326 =item B<new_certs_dir>
328 the same as the B<-outdir> command line option. It specifies
329 the directory where new certificates will be placed. Mandatory.
333 the same as B<-cert>. It gives the file containing the CA
334 certificate. Mandatory.
338 same as the B<-keyfile> option. The file containing the
339 CA private key. Mandatory.
343 a file used to read and write random number seed information, or
344 an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
346 =item B<default_days>
348 the same as the B<-days> option. The number of days to certify
351 =item B<default_startdate>
353 the same as the B<-startdate> option. The start date to certify
354 a certificate for. If not set the current time is used.
356 =item B<default_enddate>
358 the same as the B<-enddate> option. Either this option or
359 B<default_days> (or the command line equivalents) must be
362 =item B<default_crl_hours default_crl_days>
364 the same as the B<-crlhours> and the B<-crldays> options. These
365 will only be used if neither command line option is present. At
366 least one of these must be present to generate a CRL.
370 the same as the B<-md> option. The message digest to use. Mandatory.
374 the text database file to use. Mandatory. This file must be present
375 though initially it will be empty.
377 =item B<unique_subject>
379 if the value B<yes> is given, the valid certificate entries in the
380 database must have unique subjects. if the value B<no> is given,
381 several valid certificate entries may have the exact same subject.
382 The default value is B<yes>, to be compatible with older (pre 0.9.8)
383 versions of OpenSSL. However, to make CA certificate roll-over easier,
384 it's recommended to use the value B<no>, especially if combined with
385 the B<-selfsign> command line option.
389 a text file containing the next serial number to use in hex. Mandatory.
390 This file must be present and contain a valid serial number.
394 a text file containing the next CRL number to use in hex. The crl number
395 will be inserted in the CRLs only if this file exists. If this file is
396 present, it must contain a valid CRL number.
398 =item B<x509_extensions>
400 the same as B<-extensions>.
402 =item B<crl_extensions>
404 the same as B<-crlexts>.
408 the same as B<-preserveDN>
412 the same as B<-noemailDN>. If you want the EMAIL field to be removed
413 from the DN of the certificate simply set this to 'no'. If not present
414 the default is to allow for the EMAIL filed in the certificate's DN.
418 the same as B<-msie_hack>
422 the same as B<-policy>. Mandatory. See the B<POLICY FORMAT> section
423 for more information.
425 =item B<nameopt>, B<certopt>
427 these options allow the format used to display the certificate details
428 when asking the user to confirm signing. All the options supported by
429 the B<x509> utilities B<-nameopt> and B<-certopt> switches can be used
430 here, except the B<no_signame> and B<no_sigdump> are permanently set
431 and cannot be disabled (this is because the certificate signature cannot
432 be displayed because the certificate has not been signed at this point).
434 For convenience the values B<default_ca> are accepted by both to produce
437 If neither option is present the format used in earlier versions of
438 OpenSSL is used. Use of the old format is B<strongly> discouraged because
439 it only displays fields mentioned in the B<policy> section, mishandles
440 multicharacter string types and does not display extensions.
442 =item B<copy_extensions>
444 determines how extensions in certificate requests should be handled.
445 If set to B<none> or this option is not present then extensions are
446 ignored and not copied to the certificate. If set to B<copy> then any
447 extensions present in the request that are not already present are copied
448 to the certificate. If set to B<copyall> then all extensions in the
449 request are copied to the certificate: if the extension is already present
450 in the certificate it is deleted first. See the B<WARNINGS> section before
453 The main use of this option is to allow a certificate request to supply
454 values for certain extensions such as subjectAltName.
460 The policy section consists of a set of variables corresponding to
461 certificate DN fields. If the value is "match" then the field value
462 must match the same field in the CA certificate. If the value is
463 "supplied" then it must be present. If the value is "optional" then
464 it may be present. Any fields not mentioned in the policy section
465 are silently deleted, unless the B<-preserveDN> option is set but
466 this can be regarded more of a quirk than intended behaviour.
470 The input to the B<-spkac> command line option is a Netscape
471 signed public key and challenge. This will usually come from
472 the B<KEYGEN> tag in an HTML form to create a new private key.
473 It is however possible to create SPKACs using the B<spkac> utility.
475 The file should contain the variable SPKAC set to the value of
476 the SPKAC and also the required DN components as name value pairs.
477 If you need to include the same component twice then it can be
478 preceded by a number and a '.'.
482 Note: these examples assume that the B<ca> directory structure is
483 already set up and the relevant files already exist. This usually
484 involves creating a CA certificate and private key with B<req>, a
485 serial number file and an empty index file and placing them in
486 the relevant directories.
488 To use the sample configuration file below the directories demoCA,
489 demoCA/private and demoCA/newcerts would be created. The CA
490 certificate would be copied to demoCA/cacert.pem and its private
491 key to demoCA/private/cakey.pem. A file demoCA/serial would be
492 created containing for example "01" and the empty index file
496 Sign a certificate request:
498 openssl ca -in req.pem -out newcert.pem
500 Sign a certificate request, using CA extensions:
502 openssl ca -in req.pem -extensions v3_ca -out newcert.pem
506 openssl ca -gencrl -out crl.pem
508 Sign several requests:
510 openssl ca -infiles req1.pem req2.pem req3.pem
512 Certify a Netscape SPKAC:
514 openssl ca -spkac spkac.txt
516 A sample SPKAC file (the SPKAC line has been truncated for clarity):
518 SPKAC=MIG0MGAwXDANBgkqhkiG9w0BAQEFAANLADBIAkEAn7PDhCeV/xIxUg8V70YRxK2A5
520 emailAddress=steve@openssl.org
524 A sample configuration file with the relevant sections for B<ca>:
527 default_ca = CA_default # The default ca section
531 dir = ./demoCA # top dir
532 database = $dir/index.txt # index file.
533 new_certs_dir = $dir/newcerts # new certs dir
535 certificate = $dir/cacert.pem # The CA cert
536 serial = $dir/serial # serial no file
537 private_key = $dir/private/cakey.pem# CA private key
538 RANDFILE = $dir/private/.rand # random number file
540 default_days = 365 # how long to certify for
541 default_crl_days= 30 # how long before next CRL
542 default_md = md5 # md to use
544 policy = policy_any # default policy
545 email_in_dn = no # Don't add the email into cert DN
547 nameopt = default_ca # Subject name display option
548 certopt = default_ca # Certificate display option
549 copy_extensions = none # Don't copy extensions from request
552 countryName = supplied
553 stateOrProvinceName = optional
554 organizationName = optional
555 organizationalUnitName = optional
556 commonName = supplied
557 emailAddress = optional
561 Note: the location of all files can change either by compile time options,
562 configuration file entries, environment variables or command line options.
563 The values below reflect the default values.
565 /usr/local/ssl/lib/openssl.cnf - master configuration file
566 ./demoCA - main CA directory
567 ./demoCA/cacert.pem - CA certificate
568 ./demoCA/private/cakey.pem - CA private key
569 ./demoCA/serial - CA serial number file
570 ./demoCA/serial.old - CA serial number backup file
571 ./demoCA/index.txt - CA text database file
572 ./demoCA/index.txt.old - CA text database backup file
573 ./demoCA/certs - certificate output file
574 ./demoCA/.rnd - CA random seed information
576 =head1 ENVIRONMENT VARIABLES
578 B<OPENSSL_CONF> reflects the location of master configuration file it can
579 be overridden by the B<-config> command line option.
583 The text database index file is a critical part of the process and
584 if corrupted it can be difficult to fix. It is theoretically possible
585 to rebuild the index file from all the issued certificates and a current
586 CRL: however there is no option to do this.
588 V2 CRL features like delta CRL support and CRL numbers are not currently
591 Although several requests can be input and handled at once it is only
592 possible to include one SPKAC or self signed certificate.
596 The use of an in memory text database can cause problems when large
597 numbers of certificates are present because, as the name implies
598 the database has to be kept in memory.
600 It is not possible to certify two certificates with the same DN: this
601 is a side effect of how the text database is indexed and it cannot easily
602 be fixed without introducing other problems. Some S/MIME clients can use
603 two certificates with the same DN for separate signing and encryption
606 The B<ca> command really needs rewriting or the required functionality
607 exposed at either a command or interface level so a more friendly utility
608 (perl script or GUI) can handle things properly. The scripts B<CA.sh> and
609 B<CA.pl> help a little but not very much.
611 Any fields in a request that are not present in a policy are silently
612 deleted. This does not happen if the B<-preserveDN> option is used. To
613 enforce the absence of the EMAIL field within the DN, as suggested by
614 RFCs, regardless the contents of the request' subject the B<-noemailDN>
615 option can be used. The behaviour should be more friendly and
618 Cancelling some commands by refusing to certify a certificate can
619 create an empty file.
623 The B<ca> command is quirky and at times downright unfriendly.
625 The B<ca> utility was originally meant as an example of how to do things
626 in a CA. It was not supposed to be used as a full blown CA itself:
627 nevertheless some people are using it for this purpose.
629 The B<ca> command is effectively a single user command: no locking is
630 done on the various files and attempts to run more than one B<ca> command
631 on the same database can have unpredictable results.
633 The B<copy_extensions> option should be used with caution. If care is
634 not taken then it can be a security risk. For example if a certificate
635 request contains a basicConstraints extension with CA:TRUE and the
636 B<copy_extensions> value is set to B<copyall> and the user does not spot
637 this when the certificate is displayed then this will hand the requestor
638 a valid CA certificate.
640 This situation can be avoided by setting B<copy_extensions> to B<copy>
641 and including basicConstraints with CA:FALSE in the configuration file.
642 Then if the request contains a basicConstraints extension it will be
645 It is advisable to also include values for other extensions such
646 as B<keyUsage> to prevent a request supplying its own values.
648 Additional restrictions can be placed on the CA certificate itself.
649 For example if the CA certificate has:
651 basicConstraints = CA:TRUE, pathlen:0
653 then even if a certificate is issued with CA:TRUE it will not be valid.
657 L<req(1)|req(1)>, L<spkac(1)|spkac(1)>, L<x509(1)|x509(1)>, L<CA.pl(1)|CA.pl(1)>,
658 L<config(5)|config(5)>