VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.1j/doc/man1/pkeyutl.pod@ 88461

Last change on this file since 88461 was 87984, checked in by vboxsync, 4 years ago

openssl-1.1.1j: Applied and adjusted our OpenSSL changes to 1.1.1j. bugref:9963

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette