641d8f62bcedb5f0ebb54c4386458b3d0db72cf6
[openssl.git] / doc / man1 / req.pod
1 =pod
2
3 =head1 NAME
4
5 req - PKCS#10 certificate request and certificate generating utility
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<req>
10 [B<-help>]
11 [B<-inform PEM|DER>]
12 [B<-outform PEM|DER>]
13 [B<-in filename>]
14 [B<-passin arg>]
15 [B<-out filename>]
16 [B<-passout arg>]
17 [B<-text>]
18 [B<-pubkey>]
19 [B<-noout>]
20 [B<-verify>]
21 [B<-modulus>]
22 [B<-new>]
23 [B<-rand file(s)>]
24 [B<-newkey rsa:bits>]
25 [B<-newkey alg:file>]
26 [B<-nodes>]
27 [B<-key filename>]
28 [B<-keyform PEM|DER>]
29 [B<-keyout filename>]
30 [B<-keygen_engine id>]
31 [B<-[digest]>]
32 [B<-config filename>]
33 [B<-multivalue-rdn>]
34 [B<-x509>]
35 [B<-days n>]
36 [B<-set_serial n>]
37 [B<-newhdr>]
38 [B<-extensions section>]
39 [B<-reqexts section>]
40 [B<-precert>]
41 [B<-utf8>]
42 [B<-nameopt>]
43 [B<-reqopt>]
44 [B<-subject>]
45 [B<-subj arg>]
46 [B<-batch>]
47 [B<-verbose>]
48 [B<-engine id>]
49
50 =head1 DESCRIPTION
51
52 The B<req> command primarily creates and processes certificate requests
53 in PKCS#10 format. It can additionally create self signed certificates
54 for use as root CAs for example.
55
56 =head1 OPTIONS
57
58 =over 4
59
60 =item B<-help>
61
62 Print out a usage message.
63
64 =item B<-inform DER|PEM>
65
66 This specifies the input format. The B<DER> option uses an ASN1 DER encoded
67 form compatible with the PKCS#10. The B<PEM> form is the default format: it
68 consists of the B<DER> format base64 encoded with additional header and
69 footer lines.
70
71 =item B<-outform DER|PEM>
72
73 This specifies the output format, the options have the same meaning as the
74 B<-inform> option.
75
76 =item B<-in filename>
77
78 This specifies the input filename to read a request from or standard input
79 if this option is not specified. A request is only read if the creation
80 options (B<-new> and B<-newkey>) are not specified.
81
82 =item B<-passin arg>
83
84 the input file password source. For more information about the format of B<arg>
85 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
86
87 =item B<-out filename>
88
89 This specifies the output filename to write to or standard output by
90 default.
91
92 =item B<-passout arg>
93
94 the output file password source. For more information about the format of B<arg>
95 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
96
97 =item B<-text>
98
99 prints out the certificate request in text form.
100
101 =item B<-subject>
102
103 prints out the request subject (or certificate subject if B<-x509> is
104 specified)
105
106 =item B<-pubkey>
107
108 outputs the public key.
109
110 =item B<-noout>
111
112 this option prevents output of the encoded version of the request.
113
114 =item B<-modulus>
115
116 this option prints out the value of the modulus of the public key
117 contained in the request.
118
119 =item B<-verify>
120
121 verifies the signature on the request.
122
123 =item B<-new>
124
125 this option generates a new certificate request. It will prompt
126 the user for the relevant field values. The actual fields
127 prompted for and their maximum and minimum sizes are specified
128 in the configuration file and any requested extensions.
129
130 If the B<-key> option is not used it will generate a new RSA private
131 key using information specified in the configuration file.
132
133 =item B<-rand file(s)>
134
135 a file or files containing random data used to seed the random number
136 generator, or an EGD socket (see L<RAND_egd(3)>).
137 Multiple files can be specified separated by an OS-dependent character.
138 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
139 all others.
140
141 =item B<-newkey arg>
142
143 this option creates a new certificate request and a new private
144 key. The argument takes one of several forms. B<rsa:nbits>, where
145 B<nbits> is the number of bits, generates an RSA key B<nbits>
146 in size. If B<nbits> is omitted, i.e. B<-newkey rsa> specified,
147 the default key size, specified in the configuration file is used.
148
149 All other algorithms support the B<-newkey alg:file> form, where file may be
150 an algorithm parameter file, created by the B<genpkey -genparam> command
151 or and X.509 certificate for a key with appropriate algorithm.
152
153 B<param:file> generates a key using the parameter file or certificate B<file>,
154 the algorithm is determined by the parameters. B<algname:file> use algorithm
155 B<algname> and parameter file B<file>: the two algorithms must match or an
156 error occurs. B<algname> just uses algorithm B<algname>, and parameters,
157 if necessary should be specified via B<-pkeyopt> parameter.
158
159 B<dsa:filename> generates a DSA key using the parameters
160 in the file B<filename>. B<ec:filename> generates EC key (usable both with
161 ECDSA or ECDH algorithms), B<gost2001:filename> generates GOST R
162 34.10-2001 key (requires B<ccgost> engine configured in the configuration
163 file). If just B<gost2001> is specified a parameter set should be
164 specified by B<-pkeyopt paramset:X>
165
166
167 =item B<-pkeyopt opt:value>
168
169 set the public key algorithm option B<opt> to B<value>. The precise set of
170 options supported depends on the public key algorithm used and its
171 implementation. See B<KEY GENERATION OPTIONS> in the B<genpkey> manual page
172 for more details.
173
174 =item B<-key filename>
175
176 This specifies the file to read the private key from. It also
177 accepts PKCS#8 format private keys for PEM format files.
178
179 =item B<-keyform PEM|DER>
180
181 the format of the private key file specified in the B<-key>
182 argument. PEM is the default.
183
184 =item B<-keyout filename>
185
186 this gives the filename to write the newly created private key to.
187 If this option is not specified then the filename present in the
188 configuration file is used.
189
190 =item B<-nodes>
191
192 if this option is specified then if a private key is created it
193 will not be encrypted.
194
195 =item B<-[digest]>
196
197 this specifies the message digest to sign the request.
198 Any digest supported by the OpenSSL B<dgst> command can be used.
199 This overrides the digest algorithm specified in
200 the configuration file.
201
202 Some public key algorithms may override this choice. For instance, DSA
203 signatures always use SHA1, GOST R 34.10 signatures always use
204 GOST R 34.11-94 (B<-md_gost94>).
205
206 =item B<-config filename>
207
208 this allows an alternative configuration file to be specified.
209 Optional; for a description of the default value,
210 see L<openssl(1)/COMMAND SUMMARY>.
211
212 =item B<-subj arg>
213
214 sets subject name for new request or supersedes the subject name
215 when processing a request.
216 The arg must be formatted as I</type0=value0/type1=value1/type2=...>,
217 characters may be escaped by \ (backslash), no spaces are skipped.
218
219 =item B<-multivalue-rdn>
220
221 this option causes the -subj argument to be interpreted with full
222 support for multivalued RDNs. Example:
223
224 I</DC=org/DC=OpenSSL/DC=users/UID=123456+CN=John Doe>
225
226 If -multi-rdn is not used then the UID value is I<123456+CN=John Doe>.
227
228 =item B<-x509>
229
230 this option outputs a self signed certificate instead of a certificate
231 request. This is typically used to generate a test certificate or
232 a self signed root CA. The extensions added to the certificate
233 (if any) are specified in the configuration file. Unless specified
234 using the B<set_serial> option, a large random number will be used for
235 the serial number.
236
237 =item B<-days n>
238
239 when the B<-x509> option is being used this specifies the number of
240 days to certify the certificate for. The default is 30 days.
241
242 =item B<-set_serial n>
243
244 serial number to use when outputting a self signed certificate. This
245 may be specified as a decimal value or a hex value if preceded by B<0x>.
246
247 =item B<-extensions section>
248
249 =item B<-reqexts section>
250
251 these options specify alternative sections to include certificate
252 extensions (if the B<-x509> option is present) or certificate
253 request extensions. This allows several different sections to
254 be used in the same configuration file to specify requests for
255 a variety of purposes.
256
257 =item B<-precert>
258
259 a poison extension will be added to the certificate, making it a
260 "pre-certificate" (see RFC6962). This can be submitted to Certificate
261 Transparency logs in order to obtain signed certificate timestamps (SCTs).
262 These SCTs can then be embedded into the pre-certificate as an extension, before
263 removing the poison and signing the certificate.
264
265 This implies the B<-new> flag.
266
267 =item B<-utf8>
268
269 this option causes field values to be interpreted as UTF8 strings, by
270 default they are interpreted as ASCII. This means that the field
271 values, whether prompted from a terminal or obtained from a
272 configuration file, must be valid UTF8 strings.
273
274 =item B<-nameopt option>
275
276 option which determines how the subject or issuer names are displayed. The
277 B<option> argument can be a single option or multiple options separated by
278 commas.  Alternatively the B<-nameopt> switch may be used more than once to
279 set multiple options. See the L<x509(1)> manual page for details.
280
281 =item B<-reqopt>
282
283 customise the output format used with B<-text>. The B<option> argument can be
284 a single option or multiple options separated by commas.
285
286 See discussion of the  B<-certopt> parameter in the L<x509(1)>
287 command.
288
289 =item B<-newhdr>
290
291 Adds the word B<NEW> to the PEM file header and footer lines on the outputted
292 request. Some software (Netscape certificate server) and some CAs need this.
293
294 =item B<-batch>
295
296 non-interactive mode.
297
298 =item B<-verbose>
299
300 print extra details about the operations being performed.
301
302 =item B<-engine id>
303
304 specifying an engine (by its unique B<id> string) will cause B<req>
305 to attempt to obtain a functional reference to the specified engine,
306 thus initialising it if needed. The engine will then be set as the default
307 for all available algorithms.
308
309 =item B<-keygen_engine id>
310
311 specifies an engine (by its unique B<id> string) which would be used
312 for key generation operations.
313
314 =back
315
316 =head1 CONFIGURATION FILE FORMAT
317
318 The configuration options are specified in the B<req> section of
319 the configuration file. As with all configuration files if no
320 value is specified in the specific section (i.e. B<req>) then
321 the initial unnamed or B<default> section is searched too.
322
323 The options available are described in detail below.
324
325 =over 4
326
327 =item B<input_password output_password>
328
329 The passwords for the input private key file (if present) and
330 the output private key file (if one will be created). The
331 command line options B<passin> and B<passout> override the
332 configuration file values.
333
334 =item B<default_bits>
335
336 Specifies the default key size in bits.
337
338 This option is used in conjunction with the B<-new> option to generate
339 a new key. It can be overridden by specifying an explicit key size in
340 the B<-newkey> option. The smallest accepted key size is 512 bits. If
341 no key size is specified then 2048 bits is used.
342
343 =item B<default_keyfile>
344
345 This is the default filename to write a private key to. If not
346 specified the key is written to standard output. This can be
347 overridden by the B<-keyout> option.
348
349 =item B<oid_file>
350
351 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
352 Each line of the file should consist of the numerical form of the
353 object identifier followed by white space then the short name followed
354 by white space and finally the long name.
355
356 =item B<oid_section>
357
358 This specifies a section in the configuration file containing extra
359 object identifiers. Each line should consist of the short name of the
360 object identifier followed by B<=> and the numerical form. The short
361 and long names are the same when this option is used.
362
363 =item B<RANDFILE>
364
365 This specifies a filename in which random number seed information is
366 placed and read from, or an EGD socket (see L<RAND_egd(3)>).
367 It is used for private key generation.
368
369 =item B<encrypt_key>
370
371 If this is set to B<no> then if a private key is generated it is
372 B<not> encrypted. This is equivalent to the B<-nodes> command line
373 option. For compatibility B<encrypt_rsa_key> is an equivalent option.
374
375 =item B<default_md>
376
377 This option specifies the digest algorithm to use.
378 Any digest supported by the OpenSSL B<dgst> command can be used.
379 If not present then MD5 is used.
380 This option can be overridden on the command line.
381
382 =item B<string_mask>
383
384 This option masks out the use of certain string types in certain
385 fields. Most users will not need to change this option.
386
387 It can be set to several values B<default> which is also the default
388 option uses PrintableStrings, T61Strings and BMPStrings if the
389 B<pkix> value is used then only PrintableStrings and BMPStrings will
390 be used. This follows the PKIX recommendation in RFC2459. If the
391 B<utf8only> option is used then only UTF8Strings will be used: this
392 is the PKIX recommendation in RFC2459 after 2003. Finally the B<nombstr>
393 option just uses PrintableStrings and T61Strings: certain software has
394 problems with BMPStrings and UTF8Strings: in particular Netscape.
395
396 =item B<req_extensions>
397
398 this specifies the configuration file section containing a list of
399 extensions to add to the certificate request. It can be overridden
400 by the B<-reqexts> command line switch. See the
401 L<x509v3_config(5)> manual page for details of the
402 extension section format.
403
404 =item B<x509_extensions>
405
406 this specifies the configuration file section containing a list of
407 extensions to add to certificate generated when the B<-x509> switch
408 is used. It can be overridden by the B<-extensions> command line switch.
409
410 =item B<prompt>
411
412 if set to the value B<no> this disables prompting of certificate fields
413 and just takes values from the config file directly. It also changes the
414 expected format of the B<distinguished_name> and B<attributes> sections.
415
416 =item B<utf8>
417
418 if set to the value B<yes> then field values to be interpreted as UTF8
419 strings, by default they are interpreted as ASCII. This means that
420 the field values, whether prompted from a terminal or obtained from a
421 configuration file, must be valid UTF8 strings.
422
423 =item B<attributes>
424
425 this specifies the section containing any request attributes: its format
426 is the same as B<distinguished_name>. Typically these may contain the
427 challengePassword or unstructuredName types. They are currently ignored
428 by OpenSSL's request signing utilities but some CAs might want them.
429
430 =item B<distinguished_name>
431
432 This specifies the section containing the distinguished name fields to
433 prompt for when generating a certificate or certificate request. The format
434 is described in the next section.
435
436 =back
437
438 =head1 DISTINGUISHED NAME AND ATTRIBUTE SECTION FORMAT
439
440 There are two separate formats for the distinguished name and attribute
441 sections. If the B<prompt> option is set to B<no> then these sections
442 just consist of field names and values: for example,
443
444  CN=My Name
445  OU=My Organization
446  emailAddress=someone@somewhere.org
447
448 This allows external programs (e.g. GUI based) to generate a template file
449 with all the field names and values and just pass it to B<req>. An example
450 of this kind of configuration file is contained in the B<EXAMPLES> section.
451
452 Alternatively if the B<prompt> option is absent or not set to B<no> then the
453 file contains field prompting information. It consists of lines of the form:
454
455  fieldName="prompt"
456  fieldName_default="default field value"
457  fieldName_min= 2
458  fieldName_max= 4
459
460 "fieldName" is the field name being used, for example commonName (or CN).
461 The "prompt" string is used to ask the user to enter the relevant
462 details. If the user enters nothing then the default value is used if no
463 default value is present then the field is omitted. A field can
464 still be omitted if a default value is present if the user just
465 enters the '.' character.
466
467 The number of characters entered must be between the fieldName_min and
468 fieldName_max limits: there may be additional restrictions based
469 on the field being used (for example countryName can only ever be
470 two characters long and must fit in a PrintableString).
471
472 Some fields (such as organizationName) can be used more than once
473 in a DN. This presents a problem because configuration files will
474 not recognize the same name occurring twice. To avoid this problem
475 if the fieldName contains some characters followed by a full stop
476 they will be ignored. So for example a second organizationName can
477 be input by calling it "1.organizationName".
478
479 The actual permitted field names are any object identifier short or
480 long names. These are compiled into OpenSSL and include the usual
481 values such as commonName, countryName, localityName, organizationName,
482 organizationalUnitName, stateOrProvinceName. Additionally emailAddress
483 is include as well as name, surname, givenName initials and dnQualifier.
484
485 Additional object identifiers can be defined with the B<oid_file> or
486 B<oid_section> options in the configuration file. Any additional fields
487 will be treated as though they were a DirectoryString.
488
489
490 =head1 EXAMPLES
491
492 Examine and verify certificate request:
493
494  openssl req -in req.pem -text -verify -noout
495
496 Create a private key and then generate a certificate request from it:
497
498  openssl genrsa -out key.pem 2048
499  openssl req -new -key key.pem -out req.pem
500
501 The same but just using req:
502
503  openssl req -newkey rsa:2048 -keyout key.pem -out req.pem
504
505 Generate a self signed root certificate:
506
507  openssl req -x509 -newkey rsa:2048 -keyout key.pem -out req.pem
508
509 Example of a file pointed to by the B<oid_file> option:
510
511  1.2.3.4        shortName       A longer Name
512  1.2.3.6        otherName       Other longer Name
513
514 Example of a section pointed to by B<oid_section> making use of variable
515 expansion:
516
517  testoid1=1.2.3.5
518  testoid2=${testoid1}.6
519
520 Sample configuration file prompting for field values:
521
522  [ req ]
523  default_bits           = 2048
524  default_keyfile        = privkey.pem
525  distinguished_name     = req_distinguished_name
526  attributes             = req_attributes
527  req_extensions         = v3_ca
528
529  dirstring_type = nobmp
530
531  [ req_distinguished_name ]
532  countryName                    = Country Name (2 letter code)
533  countryName_default            = AU
534  countryName_min                = 2
535  countryName_max                = 2
536
537  localityName                   = Locality Name (eg, city)
538
539  organizationalUnitName         = Organizational Unit Name (eg, section)
540
541  commonName                     = Common Name (eg, YOUR name)
542  commonName_max                 = 64
543
544  emailAddress                   = Email Address
545  emailAddress_max               = 40
546
547  [ req_attributes ]
548  challengePassword              = A challenge password
549  challengePassword_min          = 4
550  challengePassword_max          = 20
551
552  [ v3_ca ]
553
554  subjectKeyIdentifier=hash
555  authorityKeyIdentifier=keyid:always,issuer:always
556  basicConstraints = critical, CA:true
557
558 Sample configuration containing all field values:
559
560
561  RANDFILE               = $ENV::HOME/.rnd
562
563  [ req ]
564  default_bits           = 2048
565  default_keyfile        = keyfile.pem
566  distinguished_name     = req_distinguished_name
567  attributes             = req_attributes
568  prompt                 = no
569  output_password        = mypass
570
571  [ req_distinguished_name ]
572  C                      = GB
573  ST                     = Test State or Province
574  L                      = Test Locality
575  O                      = Organization Name
576  OU                     = Organizational Unit Name
577  CN                     = Common Name
578  emailAddress           = test@email.address
579
580  [ req_attributes ]
581  challengePassword              = A challenge password
582
583
584 =head1 NOTES
585
586 The header and footer lines in the B<PEM> format are normally:
587
588  -----BEGIN CERTIFICATE REQUEST-----
589  -----END CERTIFICATE REQUEST-----
590
591 some software (some versions of Netscape certificate server) instead needs:
592
593  -----BEGIN NEW CERTIFICATE REQUEST-----
594  -----END NEW CERTIFICATE REQUEST-----
595
596 which is produced with the B<-newhdr> option but is otherwise compatible.
597 Either form is accepted transparently on input.
598
599 The certificate requests generated by B<Xenroll> with MSIE have extensions
600 added. It includes the B<keyUsage> extension which determines the type of
601 key (signature only or general purpose) and any additional OIDs entered
602 by the script in an extendedKeyUsage extension.
603
604 =head1 DIAGNOSTICS
605
606 The following messages are frequently asked about:
607
608         Using configuration from /some/path/openssl.cnf
609         Unable to load config info
610
611 This is followed some time later by...
612
613         unable to find 'distinguished_name' in config
614         problems making Certificate Request
615
616 The first error message is the clue: it can't find the configuration
617 file! Certain operations (like examining a certificate request) don't
618 need a configuration file so its use isn't enforced. Generation of
619 certificates or requests however does need a configuration file. This
620 could be regarded as a bug.
621
622 Another puzzling message is this:
623
624         Attributes:
625             a0:00
626
627 this is displayed when no attributes are present and the request includes
628 the correct empty B<SET OF> structure (the DER encoding of which is 0xa0
629 0x00). If you just see:
630
631         Attributes:
632
633 then the B<SET OF> is missing and the encoding is technically invalid (but
634 it is tolerated). See the description of the command line option B<-asn1-kludge>
635 for more information.
636
637 =head1 BUGS
638
639 OpenSSL's handling of T61Strings (aka TeletexStrings) is broken: it effectively
640 treats them as ISO-8859-1 (Latin 1), Netscape and MSIE have similar behaviour.
641 This can cause problems if you need characters that aren't available in
642 PrintableStrings and you don't want to or can't use BMPStrings.
643
644 As a consequence of the T61String handling the only correct way to represent
645 accented characters in OpenSSL is to use a BMPString: unfortunately Netscape
646 currently chokes on these. If you have to use accented characters with Netscape
647 and MSIE then you currently need to use the invalid T61String form.
648
649 The current prompting is not very friendly. It doesn't allow you to confirm what
650 you've just entered. Other things like extensions in certificate requests are
651 statically defined in the configuration file. Some of these: like an email
652 address in subjectAltName should be input by the user.
653
654 =head1 SEE ALSO
655
656 L<x509(1)>, L<ca(1)>, L<genrsa(1)>,
657 L<gendsa(1)>, L<config(5)>,
658 L<x509v3_config(5)>
659
660 =head1 COPYRIGHT
661
662 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
663
664 Licensed under the OpenSSL license (the "License").  You may not use
665 this file except in compliance with the License.  You can obtain a copy
666 in the file LICENSE in the source distribution or at
667 L<https://www.openssl.org/source/license.html>.
668
669 =cut