openssl-pkeyutl.pod.in 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-pkeyutl - public key algorithm command
  5. =head1 SYNOPSIS
  6. B<openssl> B<pkeyutl>
  7. [B<-help>]
  8. [B<-in> I<file>]
  9. [B<-rawin>]
  10. [B<-digest> I<algorithm>]
  11. [B<-out> I<file>]
  12. [B<-sigfile> I<file>]
  13. [B<-inkey> I<filename>|I<uri>]
  14. [B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
  15. [B<-passin> I<arg>]
  16. [B<-peerkey> I<file>]
  17. [B<-peerform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
  18. [B<-pubin>]
  19. [B<-certin>]
  20. [B<-rev>]
  21. [B<-sign>]
  22. [B<-verify>]
  23. [B<-verifyrecover>]
  24. [B<-encrypt>]
  25. [B<-decrypt>]
  26. [B<-derive>]
  27. [B<-kdf> I<algorithm>]
  28. [B<-kdflen> I<length>]
  29. [B<-pkeyopt> I<opt>:I<value>]
  30. [B<-pkeyopt_passin> I<opt>[:I<passarg>]]
  31. [B<-hexdump>]
  32. [B<-asn1parse>]
  33. {- $OpenSSL::safe::opt_engine_synopsis -}[B<-engine_impl>]
  34. {- $OpenSSL::safe::opt_r_synopsis -}
  35. {- $OpenSSL::safe::opt_provider_synopsis -}
  36. {- $OpenSSL::safe::opt_config_synopsis -}
  37. =head1 DESCRIPTION
  38. This command can be used to perform low-level public key
  39. operations using any supported algorithm.
  40. =head1 OPTIONS
  41. =over 4
  42. =item B<-help>
  43. Print out a usage message.
  44. =item B<-in> I<filename>
  45. This specifies the input filename to read data from or standard input
  46. if this option is not specified.
  47. =item B<-rawin>
  48. This indicates that the input data is raw data, which is not hashed by any
  49. message digest algorithm. The user can specify a digest algorithm by using
  50. the B<-digest> option. This option can only be used with B<-sign> and
  51. B<-verify> and must be used with the Ed25519 and Ed448 algorithms.
  52. =item B<-digest> I<algorithm>
  53. This specifies the digest algorithm which is used to hash the input data before
  54. signing or verifying it with the input key. This option could be omitted if the
  55. signature algorithm does not require one (for instance, EdDSA). If this option
  56. is omitted but the signature algorithm requires one, a default value will be
  57. used. For signature algorithms like RSA, DSA and ECDSA, SHA-256 will be the
  58. default digest algorithm. For SM2, it will be SM3. If this option is present,
  59. then the B<-rawin> option must be also specified.
  60. =item B<-out> I<filename>
  61. Specifies the output filename to write to or standard output by
  62. default.
  63. =item B<-sigfile> I<file>
  64. Signature file, required for B<-verify> operations only
  65. =item B<-inkey> I<filename>|I<uri>
  66. The input key, by default it should be a private key.
  67. =item B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>
  68. The key format; unspecified by default.
  69. See L<openssl-format-options(1)> for details.
  70. =item B<-passin> I<arg>
  71. The input key password source. For more information about the format of I<arg>
  72. see L<openssl-passphrase-options(1)>.
  73. =item B<-peerkey> I<file>
  74. The peer key file, used by key derivation (agreement) operations.
  75. =item B<-peerform> B<DER>|B<PEM>|B<P12>|B<ENGINE>
  76. The peer key format; unspecified by default.
  77. See L<openssl-format-options(1)> for details.
  78. =item B<-pubin>
  79. The input file is a public key.
  80. =item B<-certin>
  81. The input is a certificate containing a public key.
  82. =item B<-rev>
  83. Reverse the order of the input buffer. This is useful for some libraries
  84. (such as CryptoAPI) which represent the buffer in little endian format.
  85. =item B<-sign>
  86. Sign the input data (which must be a hash) and output the signed result. This
  87. requires a private key.
  88. =item B<-verify>
  89. Verify the input data (which must be a hash) against the signature file and
  90. indicate if the verification succeeded or failed.
  91. =item B<-verifyrecover>
  92. Verify the input data (which must be a hash) and output the recovered data.
  93. =item B<-encrypt>
  94. Encrypt the input data using a public key.
  95. =item B<-decrypt>
  96. Decrypt the input data using a private key.
  97. =item B<-derive>
  98. Derive a shared secret using the peer key.
  99. =item B<-kdf> I<algorithm>
  100. Use key derivation function I<algorithm>. The supported algorithms are
  101. at present B<TLS1-PRF> and B<HKDF>.
  102. Note: additional parameters and the KDF output length will normally have to be
  103. set for this to work.
  104. See L<EVP_PKEY_CTX_set_hkdf_md(3)> and L<EVP_PKEY_CTX_set_tls1_prf_md(3)>
  105. for the supported string parameters of each algorithm.
  106. =item B<-kdflen> I<length>
  107. Set the output length for KDF.
  108. =item B<-pkeyopt> I<opt>:I<value>
  109. Public key options specified as opt:value. See NOTES below for more details.
  110. =item B<-pkeyopt_passin> I<opt>[:I<passarg>]
  111. Allows reading a public key option I<opt> from stdin or a password source.
  112. If only I<opt> is specified, the user will be prompted to enter a password on
  113. stdin. Alternatively, I<passarg> can be specified which can be any value
  114. supported by L<openssl-passphrase-options(1)>.
  115. =item B<-hexdump>
  116. hex dump the output data.
  117. =item B<-asn1parse>
  118. Parse the ASN.1 output data, this is useful when combined with the
  119. B<-verifyrecover> option when an ASN1 structure is signed.
  120. {- $OpenSSL::safe::opt_engine_item -}
  121. {- output_off() if $disabled{"deprecated-3.0"}; "" -}
  122. =item B<-engine_impl>
  123. When used with the B<-engine> option, it specifies to also use
  124. engine I<id> for crypto operations.
  125. {- output_on() if $disabled{"deprecated-3.0"}; "" -}
  126. {- $OpenSSL::safe::opt_r_item -}
  127. {- $OpenSSL::safe::opt_provider_item -}
  128. {- $OpenSSL::safe::opt_config_item -}
  129. =back
  130. =head1 NOTES
  131. The operations and options supported vary according to the key algorithm
  132. and its implementation. The OpenSSL operations and options are indicated below.
  133. Unless otherwise mentioned all algorithms support the B<digest:>I<alg> option
  134. which specifies the digest in use for sign, verify and verifyrecover operations.
  135. The value I<alg> should represent a digest name as used in the
  136. EVP_get_digestbyname() function for example B<sha1>. This value is not used to
  137. hash the input data. It is used (by some algorithms) for sanity-checking the
  138. lengths of data passed in and for creating the structures that make up the
  139. signature (e.g. B<DigestInfo> in RSASSA PKCS#1 v1.5 signatures).
  140. This command does not hash the input data (except where -rawin is used) but
  141. rather it will use the data directly as input to the signature algorithm.
  142. Depending on the key type, signature type, and mode of padding, the maximum
  143. acceptable lengths of input data differ. The signed data can't be longer than
  144. the key modulus with RSA. In case of ECDSA and DSA the data shouldn't be longer
  145. than the field size, otherwise it will be silently truncated to the field size.
  146. In any event the input size must not be larger than the largest supported digest
  147. size.
  148. In other words, if the value of digest is B<sha1> the input should be the 20
  149. bytes long binary encoding of the SHA-1 hash function output.
  150. =head1 RSA ALGORITHM
  151. The RSA algorithm generally supports the encrypt, decrypt, sign,
  152. verify and verifyrecover operations. However, some padding modes
  153. support only a subset of these operations. The following additional
  154. B<pkeyopt> values are supported:
  155. =over 4
  156. =item B<rsa_padding_mode:>I<mode>
  157. This sets the RSA padding mode. Acceptable values for I<mode> are B<pkcs1> for
  158. PKCS#1 padding, B<none> for no padding, B<oaep>
  159. for B<OAEP> mode, B<x931> for X9.31 mode and B<pss> for PSS.
  160. In PKCS#1 padding if the message digest is not set then the supplied data is
  161. signed or verified directly instead of using a B<DigestInfo> structure. If a
  162. digest is set then the a B<DigestInfo> structure is used and its the length
  163. must correspond to the digest type.
  164. For B<oaep> mode only encryption and decryption is supported.
  165. For B<x931> if the digest type is set it is used to format the block data
  166. otherwise the first byte is used to specify the X9.31 digest ID. Sign,
  167. verify and verifyrecover are can be performed in this mode.
  168. For B<pss> mode only sign and verify are supported and the digest type must be
  169. specified.
  170. =item B<rsa_pss_saltlen:>I<len>
  171. For B<pss> mode only this option specifies the salt length. Three special
  172. values are supported: B<digest> sets the salt length to the digest length,
  173. B<max> sets the salt length to the maximum permissible value. When verifying
  174. B<auto> causes the salt length to be automatically determined based on the
  175. B<PSS> block structure.
  176. =item B<rsa_mgf1_md:>I<digest>
  177. For PSS and OAEP padding sets the MGF1 digest. If the MGF1 digest is not
  178. explicitly set in PSS mode then the signing digest is used.
  179. =back
  180. =head1 RSA-PSS ALGORITHM
  181. The RSA-PSS algorithm is a restricted version of the RSA algorithm which only
  182. supports the sign and verify operations with PSS padding. The following
  183. additional B<-pkeyopt> values are supported:
  184. =over 4
  185. =item B<rsa_padding_mode:>I<mode>, B<rsa_pss_saltlen:>I<len>,
  186. B<rsa_mgf1_md:>I<digest>
  187. These have the same meaning as the B<RSA> algorithm with some additional
  188. restrictions. The padding mode can only be set to B<pss> which is the
  189. default value.
  190. If the key has parameter restrictions than the digest, MGF1
  191. digest and salt length are set to the values specified in the parameters.
  192. The digest and MG cannot be changed and the salt length cannot be set to a
  193. value less than the minimum restriction.
  194. =back
  195. =head1 DSA ALGORITHM
  196. The DSA algorithm supports signing and verification operations only. Currently
  197. there are no additional B<-pkeyopt> options other than B<digest>. The SHA1
  198. digest is assumed by default.
  199. =head1 DH ALGORITHM
  200. The DH algorithm only supports the derivation operation and no additional
  201. B<-pkeyopt> options.
  202. =head1 EC ALGORITHM
  203. The EC algorithm supports sign, verify and derive operations. The sign and
  204. verify operations use ECDSA and derive uses ECDH. SHA1 is assumed by default for
  205. the B<-pkeyopt> B<digest> option.
  206. =head1 X25519 AND X448 ALGORITHMS
  207. The X25519 and X448 algorithms support key derivation only. Currently there are
  208. no additional options.
  209. =head1 ED25519 AND ED448 ALGORITHMS
  210. These algorithms only support signing and verifying. OpenSSL only implements the
  211. "pure" variants of these algorithms so raw data can be passed directly to them
  212. without hashing them first. The option B<-rawin> must be used with these
  213. algorithms with no B<-digest> specified. Additionally OpenSSL only supports
  214. "oneshot" operation with these algorithms. This means that the entire file to
  215. be signed/verified must be read into memory before processing it. Signing or
  216. Verifying very large files should be avoided. Additionally the size of the file
  217. must be known for this to work. If the size of the file cannot be determined
  218. (for example if the input is stdin) then the sign or verify operation will fail.
  219. =head1 SM2
  220. The SM2 algorithm supports sign, verify, encrypt and decrypt operations. For
  221. the sign and verify operations, SM2 requires an Distinguishing ID string to
  222. be passed in. The following B<-pkeyopt> value is supported:
  223. =over 4
  224. =item B<distid:>I<string>
  225. This sets the ID string used in SM2 sign or verify operations. While verifying
  226. an SM2 signature, the ID string must be the same one used when signing the data.
  227. Otherwise the verification will fail.
  228. =item B<hexdistid:>I<hex_string>
  229. This sets the ID string used in SM2 sign or verify operations. While verifying
  230. an SM2 signature, the ID string must be the same one used when signing the data.
  231. Otherwise the verification will fail. The ID string provided with this option
  232. should be a valid hexadecimal value.
  233. =back
  234. =head1 EXAMPLES
  235. Sign some data using a private key:
  236. openssl pkeyutl -sign -in file -inkey key.pem -out sig
  237. Recover the signed data (e.g. if an RSA key is used):
  238. openssl pkeyutl -verifyrecover -in sig -inkey key.pem
  239. Verify the signature (e.g. a DSA key):
  240. openssl pkeyutl -verify -in file -sigfile sig -inkey key.pem
  241. Sign data using a message digest value (this is currently only valid for RSA):
  242. openssl pkeyutl -sign -in file -inkey key.pem -out sig -pkeyopt digest:sha256
  243. Derive a shared secret value:
  244. openssl pkeyutl -derive -inkey key.pem -peerkey pubkey.pem -out secret
  245. Hexdump 48 bytes of TLS1 PRF using digest B<SHA256> and shared secret and
  246. seed consisting of the single byte 0xFF:
  247. openssl pkeyutl -kdf TLS1-PRF -kdflen 48 -pkeyopt md:SHA256 \
  248. -pkeyopt hexsecret:ff -pkeyopt hexseed:ff -hexdump
  249. Derive a key using B<scrypt> where the password is read from command line:
  250. openssl pkeyutl -kdf scrypt -kdflen 16 -pkeyopt_passin pass \
  251. -pkeyopt hexsalt:aabbcc -pkeyopt N:16384 -pkeyopt r:8 -pkeyopt p:1
  252. Derive using the same algorithm, but read key from environment variable MYPASS:
  253. openssl pkeyutl -kdf scrypt -kdflen 16 -pkeyopt_passin pass:env:MYPASS \
  254. -pkeyopt hexsalt:aabbcc -pkeyopt N:16384 -pkeyopt r:8 -pkeyopt p:1
  255. Sign some data using an L<SM2(7)> private key and a specific ID:
  256. openssl pkeyutl -sign -in file -inkey sm2.key -out sig -rawin -digest sm3 \
  257. -pkeyopt distid:someid
  258. Verify some data using an L<SM2(7)> certificate and a specific ID:
  259. openssl pkeyutl -verify -certin -in file -inkey sm2.cert -sigfile sig \
  260. -rawin -digest sm3 -pkeyopt distid:someid
  261. =head1 SEE ALSO
  262. L<openssl(1)>,
  263. L<openssl-genpkey(1)>,
  264. L<openssl-pkey(1)>,
  265. L<openssl-rsautl(1)>
  266. L<openssl-dgst(1)>,
  267. L<openssl-rsa(1)>,
  268. L<openssl-genrsa(1)>,
  269. L<openssl-kdf(1)>
  270. L<EVP_PKEY_CTX_set_hkdf_md(3)>,
  271. L<EVP_PKEY_CTX_set_tls1_prf_md(3)>,
  272. =head1 HISTORY
  273. The B<-engine> option was deprecated in OpenSSL 3.0.
  274. =head1 COPYRIGHT
  275. Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
  276. Licensed under the Apache License 2.0 (the "License"). You may not use
  277. this file except in compliance with the License. You can obtain a copy
  278. in the file LICENSE in the source distribution or at
  279. L<https://www.openssl.org/source/license.html>.
  280. =cut