openssl-genpkey.pod 9.5 KB

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