Forbid to specify -nextprotoneg if -tls1_3 is enabled
[openssl.git] / doc / man1 / pkeyutl.pod
1 =pod
2
3 =head1 NAME
4
5 pkeyutl - public key algorithm utility
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<pkeyutl>
10 [B<-help>]
11 [B<-in file>]
12 [B<-out file>]
13 [B<-sigfile file>]
14 [B<-inkey file>]
15 [B<-keyform PEM|DER|ENGINE>]
16 [B<-passin arg>]
17 [B<-peerkey file>]
18 [B<-peerform PEM|DER|ENGINE>]
19 [B<-pubin>]
20 [B<-certin>]
21 [B<-rev>]
22 [B<-sign>]
23 [B<-verify>]
24 [B<-verifyrecover>]
25 [B<-encrypt>]
26 [B<-decrypt>]
27 [B<-derive>]
28 [B<-kdf algorithm>]
29 [B<-kdflen length>]
30 [B<-pkeyopt opt:value>]
31 [B<-hexdump>]
32 [B<-asn1parse>]
33 [B<-engine id>]
34 [B<-engine_impl>]
35
36 =head1 DESCRIPTION
37
38 The B<pkeyutl> command can be used to perform public key operations using
39 any supported algorithm.
40
41 =head1 OPTIONS
42
43 =over 4
44
45 =item B<-help>
46
47 Print out a usage message.
48
49 =item B<-in filename>
50
51 This specifies the input filename to read data from or standard input
52 if this option is not specified.
53
54 =item B<-out filename>
55
56 Specifies the output filename to write to or standard output by
57 default.
58
59 =item B<-sigfile file>
60
61 Signature file, required for B<verify> operations only
62
63 =item B<-inkey file>
64
65 The input key file, by default it should be a private key.
66
67 =item B<-keyform PEM|DER|ENGINE>
68
69 The key format PEM, DER or ENGINE. Default is PEM.
70
71 =item B<-passin arg>
72
73 The input key password source. For more information about the format of B<arg>
74 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
75
76 =item B<-peerkey file>
77
78 The peer key file, used by key derivation (agreement) operations.
79
80 =item B<-peerform PEM|DER|ENGINE>
81
82 The peer key format PEM, DER or ENGINE. Default is PEM.
83
84 =item B<-pubin>
85
86 The input file is a public key.
87
88 =item B<-certin>
89
90 The input is a certificate containing a public key.
91
92 =item B<-rev>
93
94 Reverse the order of the input buffer. This is useful for some libraries
95 (such as CryptoAPI) which represent the buffer in little endian format.
96
97 =item B<-sign>
98
99 Sign the input data and output the signed result. This requires
100 a private key.
101
102 =item B<-verify>
103
104 Verify the input data against the signature file and indicate if the
105 verification succeeded or failed.
106
107 =item B<-verifyrecover>
108
109 Verify the input data and output the recovered data.
110
111 =item B<-encrypt>
112
113 Encrypt the input data using a public key.
114
115 =item B<-decrypt>
116
117 Decrypt the input data using a private key.
118
119 =item B<-derive>
120
121 Derive a shared secret using the peer key.
122
123 =item B<-kdf algorithm>
124
125 Use key derivation function B<algorithm>.  The supported algorithms are
126 at present B<TLS1-PRF> and B<HKDF>.
127 Note: additional parameters and the KDF output length will normally have to be
128 set for this to work.
129 See L<EVP_PKEY_CTX_set_hkdf_md(3)> and L<EVP_PKEY_CTX_set_tls1_prf_md(3)>
130 for the supported string parameters of each algorithm.
131
132 =item B<-kdflen length>
133
134 Set the output length for KDF.
135
136 =item B<-pkeyopt opt:value>
137
138 Public key options specified as opt:value. See NOTES below for more details.
139
140 =item B<-hexdump>
141
142 hex dump the output data.
143
144 =item B<-asn1parse>
145
146 Parse the ASN.1 output data, this is useful when combined with the
147 B<-verifyrecover> option when an ASN1 structure is signed.
148
149 =item B<-engine id>
150
151 Specifying an engine (by its unique B<id> string) will cause B<pkeyutl>
152 to attempt to obtain a functional reference to the specified engine,
153 thus initialising it if needed. The engine will then be set as the default
154 for all available algorithms.
155
156 =item B<-engine_impl>
157
158 When used with the B<-engine> option, it specifies to also use
159 engine B<id> for crypto operations.
160
161 =back
162
163 =head1 NOTES
164
165 The operations and options supported vary according to the key algorithm
166 and its implementation. The OpenSSL operations and options are indicated below.
167
168 Unless otherwise mentioned all algorithms support the B<digest:alg> option
169 which specifies the digest in use for sign, verify and verifyrecover operations.
170 The value B<alg> should represent a digest name as used in the
171 EVP_get_digestbyname() function for example B<sha1>.
172 This value is used only for sanity-checking the lengths of data passed in to
173 the B<pkeyutl> and for creating the structures that make up the signature
174 (e.g. B<DigestInfo> in RSASSA PKCS#1 v1.5 signatures).
175 In case of RSA, ECDSA and DSA signatures, this utility
176 will not perform hashing on input data but rather use the data directly as
177 input of signature algorithm. Depending on key type, signature type and mode
178 of padding, the maximum acceptable lengths of input data differ. In general,
179 with RSA the signed data can't be longer than the key modulus, in case of ECDSA
180 and DSA the data shouldn't be longer than field size, otherwise it will be
181 silently truncated to field size.
182
183 In other words, if the value of digest is B<sha1> the input should be 20 bytes
184 long binary encoding of SHA-1 hash function output.
185
186 =head1 RSA ALGORITHM
187
188 The RSA algorithm generally supports the encrypt, decrypt, sign,
189 verify and verifyrecover operations. However, some padding modes
190 support only a subset of these operations. The following additional
191 B<pkeyopt> values are supported:
192
193 =over 4
194
195 =item B<rsa_padding_mode:mode>
196
197 This sets the RSA padding mode. Acceptable values for B<mode> are B<pkcs1> for
198 PKCS#1 padding, B<sslv23> for SSLv23 padding, B<none> for no padding, B<oaep>
199 for B<OAEP> mode, B<x931> for X9.31 mode and B<pss> for PSS.
200
201 In PKCS#1 padding if the message digest is not set then the supplied data is
202 signed or verified directly instead of using a B<DigestInfo> structure. If a
203 digest is set then the a B<DigestInfo> structure is used and its the length
204 must correspond to the digest type.
205
206 For B<oaep> mode only encryption and decryption is supported.
207
208 For B<x931> if the digest type is set it is used to format the block data
209 otherwise the first byte is used to specify the X9.31 digest ID. Sign,
210 verify and verifyrecover are can be performed in this mode.
211
212 For B<pss> mode only sign and verify are supported and the digest type must be
213 specified.
214
215 =item B<rsa_pss_saltlen:len>
216
217 For B<pss> mode only this option specifies the salt length. Three special
218 values are supported: "digest" sets the salt length to the digest length,
219 "max" sets the salt length to the maximum permissible value. When verifying
220 "auto" causes the salt length to be automatically determined based on the
221 B<PSS> block structure.
222
223 =item B<rsa_mgf1_md:digest>
224
225 For PSS and OAEP padding sets the MGF1 digest. If the MGF1 digest is not
226 explicitly set in PSS mode then the signing digest is used.
227
228 =back
229
230 =head1 RSA-PSS ALGORITHM
231
232 The RSA-PSS algorithm is a restricted version of the RSA algorithm which only
233 supports the sign and verify operations with PSS padding. The following
234 additional B<pkeyopt> values are supported:
235
236 =over 4
237
238 =item B<rsa_padding_mode:mode>, B<rsa_pss_saltlen:len>, B<rsa_mgf1_md:digest>
239
240 These have the same meaning as the B<RSA> algorithm with some additional
241 restrictions. The padding mode can only be set to B<pss> which is the
242 default value.
243
244 If the key has parameter restrictions than the digest, MGF1
245 digest and salt length are set to the values specified in the parameters.
246 The digest and MG cannot be changed and the salt length cannot be set to a
247 value less than the minimum restriction.
248
249 =back
250
251 =head1 DSA ALGORITHM
252
253 The DSA algorithm supports signing and verification operations only. Currently
254 there are no additional options other than B<digest>. Only the SHA1
255 digest can be used and this digest is assumed by default.
256
257 =head1 DH ALGORITHM
258
259 The DH algorithm only supports the derivation operation and no additional
260 options.
261
262 =head1 EC ALGORITHM
263
264 The EC algorithm supports sign, verify and derive operations. The sign and
265 verify operations use ECDSA and derive uses ECDH. Currently there are no
266 additional options other than B<digest>. Only the SHA1 digest can be used and
267 this digest is assumed by default.
268
269 =head1 X25519 ALGORITHM
270
271 The X25519 algorithm supports key derivation only. Currently there are no
272 additional options.
273
274 =head1 EXAMPLES
275
276 Sign some data using a private key:
277
278  openssl pkeyutl -sign -in file -inkey key.pem -out sig
279
280 Recover the signed data (e.g. if an RSA key is used):
281
282  openssl pkeyutl -verifyrecover -in sig -inkey key.pem
283
284 Verify the signature (e.g. a DSA key):
285
286  openssl pkeyutl -verify -in file -sigfile sig -inkey key.pem
287
288 Sign data using a message digest value (this is currently only valid for RSA):
289
290  openssl pkeyutl -sign -in file -inkey key.pem -out sig -pkeyopt digest:sha256
291
292 Derive a shared secret value:
293
294  openssl pkeyutl -derive -inkey key.pem -peerkey pubkey.pem -out secret
295
296 Hexdump 48 bytes of TLS1 PRF using digest B<SHA256> and shared secret and
297 seed consisting of the single byte 0xFF:
298
299  openssl pkeyutl -kdf TLS1-PRF -kdflen 48 -pkeyopt md:SHA256 \
300     -pkeyopt hexsecret:ff -pkeyopt hexseed:ff -hexdump
301
302 =head1 SEE ALSO
303
304 L<genpkey(1)>, L<pkey(1)>, L<rsautl(1)>
305 L<dgst(1)>, L<rsa(1)>, L<genrsa(1)>,
306 L<EVP_PKEY_CTX_set_hkdf_md(3)>, L<EVP_PKEY_CTX_set_tls1_prf_md(3)>
307
308 =head1 COPYRIGHT
309
310 Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.
311
312 Licensed under the OpenSSL license (the "License").  You may not use
313 this file except in compliance with the License.  You can obtain a copy
314 in the file LICENSE in the source distribution or at
315 L<https://www.openssl.org/source/license.html>.
316
317 =cut