openssl-genpkey.pod.in 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-genpkey - generate a private key
  7. =head1 SYNOPSIS
  8. B<openssl> B<genpkey>
  9. [B<-help>]
  10. [B<-out> I<filename>]
  11. [B<-outform> B<DER>|B<PEM>]
  12. [B<-pass> I<arg>]
  13. [B<-I<cipher>>]
  14. [B<-paramfile> I<file>]
  15. [B<-algorithm> I<alg>]
  16. [B<-pkeyopt> I<opt>:I<value>]
  17. [B<-genparam>]
  18. [B<-text>]
  19. {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
  20. {- $OpenSSL::safe::opt_config_synopsis -}
  21. =for openssl ifdef engine
  22. =head1 DESCRIPTION
  23. This command generates a private key.
  24. =head1 OPTIONS
  25. =over 4
  26. =item B<-help>
  27. Print out a usage message.
  28. =item B<-out> I<filename>
  29. Output the key to the specified file. If this argument is not specified then
  30. standard output is used.
  31. =item B<-outform> B<DER>|B<PEM>
  32. The output format, except when B<-genparam> is given; the default is B<PEM>.
  33. See L<openssl-format-options(1)> for details.
  34. When B<-genparam> is given, B<-outform> is ignored.
  35. =item B<-pass> I<arg>
  36. The output file password source. For more information about the format of I<arg>
  37. see L<openssl-passphrase-options(1)>.
  38. =item B<-I<cipher>>
  39. This option encrypts the private key with the supplied cipher. Any algorithm
  40. name accepted by EVP_get_cipherbyname() is acceptable such as B<des3>.
  41. =item B<-algorithm> I<alg>
  42. Public key algorithm to use such as RSA, DSA or DH. If used this option must
  43. precede any B<-pkeyopt> options. The options B<-paramfile> and B<-algorithm>
  44. are mutually exclusive. Engines may add algorithms in addition to the standard
  45. built-in ones.
  46. Valid built-in algorithm names for private key generation are RSA, RSA-PSS, EC,
  47. X25519, X448, ED25519 and ED448.
  48. Valid built-in algorithm names for parameter generation (see the B<-genparam>
  49. option) are DH, DSA and EC.
  50. Note that the algorithm name X9.42 DH may be used as a synonym for the DH
  51. algorithm. These are identical and do not indicate the type of parameters that
  52. will be generated. Use the B<dh_paramgen_type> option to indicate whether PKCS#3
  53. or X9.42 DH parameters are required. See L</DH Parameter Generation Options>
  54. below for more details.
  55. =item B<-pkeyopt> I<opt>:I<value>
  56. Set the public key algorithm option I<opt> to I<value>. The precise set of
  57. options supported depends on the public key algorithm used and its
  58. implementation. See L</KEY GENERATION OPTIONS> and
  59. L</PARAMETER GENERATION OPTIONS> below for more details.
  60. =item B<-genparam>
  61. Generate a set of parameters instead of a private key. If used this option must
  62. precede any B<-algorithm>, B<-paramfile> or B<-pkeyopt> options.
  63. =item B<-paramfile> I<filename>
  64. Some public key algorithms generate a private key based on a set of parameters.
  65. They can be supplied using this option. If this option is used the public key
  66. algorithm used is determined by the parameters. If used this option must
  67. precede any B<-pkeyopt> options. The options B<-paramfile> and B<-algorithm>
  68. are mutually exclusive.
  69. =item B<-text>
  70. Print an (unencrypted) text representation of private and public keys and
  71. parameters along with the PEM or DER structure.
  72. {- $OpenSSL::safe::opt_engine_item -}
  73. {- $OpenSSL::safe::opt_provider_item -}
  74. {- $OpenSSL::safe::opt_config_item -}
  75. =back
  76. =head1 KEY GENERATION OPTIONS
  77. The options supported by each algorithm and indeed each implementation of an
  78. algorithm can vary. The options for the OpenSSL implementations are detailed
  79. below. There are no key generation options defined for the X25519, X448, ED25519
  80. or ED448 algorithms.
  81. =head2 RSA Key Generation Options
  82. =over 4
  83. =item B<rsa_keygen_bits:numbits>
  84. The number of bits in the generated key. If not specified 2048 is used.
  85. =item B<rsa_keygen_primes:numprimes>
  86. The number of primes in the generated key. If not specified 2 is used.
  87. =item B<rsa_keygen_pubexp:value>
  88. The RSA public exponent value. This can be a large decimal or
  89. hexadecimal value if preceded by C<0x>. Default value is 65537.
  90. =back
  91. =head2 RSA-PSS Key Generation Options
  92. Note: by default an B<RSA-PSS> key has no parameter restrictions.
  93. =over 4
  94. =item B<rsa_keygen_bits>:I<numbits>, B<rsa_keygen_primes>:I<numprimes>,
  95. B<rsa_keygen_pubexp>:I<value>
  96. These options have the same meaning as the B<RSA> algorithm.
  97. =item B<rsa_pss_keygen_md>:I<digest>
  98. If set the key is restricted and can only use I<digest> for signing.
  99. =item B<rsa_pss_keygen_mgf1_md>:I<digest>
  100. If set the key is restricted and can only use I<digest> as it's MGF1
  101. parameter.
  102. =item B<rsa_pss_keygen_saltlen>:I<len>
  103. If set the key is restricted and I<len> specifies the minimum salt length.
  104. =back
  105. =head2 EC Key Generation Options
  106. The EC key generation options can also be used for parameter generation.
  107. =over 4
  108. =item B<ec_paramgen_curve>:I<curve>
  109. The EC curve to use. OpenSSL supports NIST curve names such as "P-256".
  110. =item B<ec_param_enc>:I<encoding>
  111. The encoding to use for parameters. The I<encoding> parameter must be either
  112. B<named_curve> or B<explicit>. The default value is B<named_curve>.
  113. =back
  114. =head1 PARAMETER GENERATION OPTIONS
  115. The options supported by each algorithm and indeed each implementation of an
  116. algorithm can vary. The options for the OpenSSL implementations are detailed
  117. below.
  118. =head2 DSA Parameter Generation Options
  119. =over 4
  120. =item B<dsa_paramgen_bits>:I<numbits>
  121. The number of bits in the generated prime. If not specified 2048 is used.
  122. =item B<dsa_paramgen_q_bits>:I<numbits>
  123. =item B<qbits>:I<numbits>
  124. The number of bits in the q parameter. Must be one of 160, 224 or 256. If not
  125. specified 224 is used.
  126. =item B<dsa_paramgen_md>:I<digest>
  127. =item B<digest>:I<digest>
  128. The digest to use during parameter generation. Must be one of B<sha1>, B<sha224>
  129. or B<sha256>. If set, then the number of bits in B<q> will match the output size
  130. of the specified digest and the B<dsa_paramgen_q_bits> parameter will be
  131. ignored. If not set, then a digest will be used that gives an output matching
  132. the number of bits in B<q>, i.e. B<sha1> if q length is 160, B<sha224> if it 224
  133. or B<sha256> if it is 256.
  134. =item B<properties>:I<query>
  135. The I<digest> property I<query> string to use when fetching a digest from a provider.
  136. =item B<type>:I<type>
  137. The type of generation to use. Set this to 1 to use legacy FIPS186-2 parameter
  138. generation. The default of 0 uses FIPS186-4 parameter generation.
  139. =item B<gindex>:I<index>
  140. The index to use for canonical generation and verification of the generator g.
  141. Set this to a positive value ranging from 0..255 to use this mode. Larger values
  142. will only use the bottom byte.
  143. This I<index> must then be reused during key validation to verify the value of g.
  144. If this value is not set then g is not verifiable. The default value is -1.
  145. =item B<hexseed>:I<seed>
  146. The seed I<seed> data to use instead of generating a random seed internally.
  147. This should be used for testing purposes only. This will either produced fixed
  148. values for the generated parameters OR it will fail if the seed did not
  149. generate valid primes.
  150. =back
  151. =head2 DH Parameter Generation Options
  152. =over 4
  153. =item B<dh_paramgen_prime_len>:I<numbits>
  154. The number of bits in the prime parameter I<p>. The default is 2048.
  155. =item B<dh_paramgen_subprime_len>:I<numbits>
  156. The number of bits in the sub prime parameter I<q>. The default is 256 if the
  157. prime is at least 2048 bits long or 160 otherwise. Only relevant if used in
  158. conjunction with the B<dh_paramgen_type> option to generate X9.42 DH parameters.
  159. =item B<dh_paramgen_generator>:I<value>
  160. The value to use for the generator I<g>. The default is 2.
  161. =item B<dh_paramgen_type>:I<value>
  162. The type of DH parameters to generate. Use 0 for PKCS#3 DH and 1 for X9.42 DH.
  163. The default is 0.
  164. =item B<dh_rfc5114>:I<num>
  165. If this option is set, then the appropriate RFC5114 parameters are used
  166. instead of generating new parameters. The value I<num> can be one of
  167. 1, 2 or 3 corresponding to RFC5114 DH parameters consisting of
  168. 1024 bit group with 160 bit subgroup, 2048 bit group with 224 bit subgroup
  169. and 2048 bit group with 256 bit subgroup as mentioned in RFC5114 sections
  170. 2.1, 2.2 and 2.3 respectively. If present this overrides all other DH parameter
  171. options.
  172. =back
  173. =head2 EC Parameter Generation Options
  174. The EC parameter generation options are the same as for key generation. See
  175. L</EC Key Generation Options> above.
  176. =head1 NOTES
  177. The use of the genpkey program is encouraged over the algorithm specific
  178. utilities because additional algorithm options and ENGINE provided algorithms
  179. can be used.
  180. =head1 EXAMPLES
  181. Generate an RSA private key using default parameters:
  182. openssl genpkey -algorithm RSA -out key.pem
  183. Encrypt output private key using 128 bit AES and the passphrase "hello":
  184. openssl genpkey -algorithm RSA -out key.pem -aes-128-cbc -pass pass:hello
  185. Generate a 2048 bit RSA key using 3 as the public exponent:
  186. openssl genpkey -algorithm RSA -out key.pem \
  187. -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:3
  188. Generate 2048 bit DSA parameters that can be validated: The output values for
  189. gindex and seed are required for key validation purposes and are not saved to
  190. the output pem file).
  191. openssl genpkey -genparam -algorithm DSA -out dsap.pem -pkeyopt pbits:2048 \
  192. -pkeyopt qbits:224 -pkeyopt digest:SHA256 -pkeyopt gindex:1 -text
  193. Generate DSA key from parameters:
  194. openssl genpkey -paramfile dsap.pem -out dsakey.pem
  195. Generate 2048 bit DH parameters:
  196. openssl genpkey -genparam -algorithm DH -out dhp.pem \
  197. -pkeyopt dh_paramgen_prime_len:2048
  198. Generate 2048 bit X9.42 DH parameters:
  199. openssl genpkey -genparam -algorithm DH -out dhpx.pem \
  200. -pkeyopt dh_paramgen_prime_len:2048 \
  201. -pkeyopt dh_paramgen_type:1
  202. Output RFC5114 2048 bit DH parameters with 224 bit subgroup:
  203. openssl genpkey -genparam -algorithm DH -out dhp.pem -pkeyopt dh_rfc5114:2
  204. Generate DH key from parameters:
  205. openssl genpkey -paramfile dhp.pem -out dhkey.pem
  206. Generate EC parameters:
  207. openssl genpkey -genparam -algorithm EC -out ecp.pem \
  208. -pkeyopt ec_paramgen_curve:secp384r1 \
  209. -pkeyopt ec_param_enc:named_curve
  210. Generate EC key from parameters:
  211. openssl genpkey -paramfile ecp.pem -out eckey.pem
  212. Generate EC key directly:
  213. openssl genpkey -algorithm EC -out eckey.pem \
  214. -pkeyopt ec_paramgen_curve:P-384 \
  215. -pkeyopt ec_param_enc:named_curve
  216. Generate an X25519 private key:
  217. openssl genpkey -algorithm X25519 -out xkey.pem
  218. Generate an ED448 private key:
  219. openssl genpkey -algorithm ED448 -out xkey.pem
  220. =head1 HISTORY
  221. The ability to use NIST curve names, and to generate an EC key directly,
  222. were added in OpenSSL 1.0.2.
  223. The ability to generate X25519 keys was added in OpenSSL 1.1.0.
  224. The ability to generate X448, ED25519 and ED448 keys was added in OpenSSL 1.1.1.
  225. The B<-engine> option was deprecated in OpenSSL 3.0.
  226. =head1 COPYRIGHT
  227. Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
  228. Licensed under the Apache License 2.0 (the "License"). You may not use
  229. this file except in compliance with the License. You can obtain a copy
  230. in the file LICENSE in the source distribution or at
  231. L<https://www.openssl.org/source/license.html>.
  232. =cut