doc: note that get_params and set_params calls should return true if the param array...
[openssl.git] / doc / man7 / EVP_PKEY-DH.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_PKEY-DH, EVP_KEYMGMT-DH - EVP_PKEY DH keytype and algorithm support
6
7 =head1 DESCRIPTION
8
9 For B<DH> FFC key agreement, two classes of domain parameters can be used:
10 "safe" domain parameters that are associated with approved named safe-prime
11 groups, and a class of "FIPS 186-type" domain parameters. FIPS 186-type domain
12 parameters should only be used for backward compatibility with existing
13 applications that cannot be upgraded to use the approved safe-prime groups.
14
15 See L<EVP_PKEY-FFC(7)> for more information about FFC keys.
16
17 For B<DH> that is not a named group the FIPS186-4 standard specifies that the
18 values used for FFC parameter generation are also required for parameter
19 validation. This means that optional FFC domain parameter values for
20 I<seed>, I<pcounter> and I<gindex> may need to be stored for validation purposes.
21 For B<DH> the I<seed> and I<pcounter> can be stored in ASN1 data
22 (but the I<gindex> is not).
23
24 =head2 DH parameters
25
26 In addition to the common FCC parameters that all FFC keytypes should support
27 (see L<EVP_PKEY-FFC(7)/FFC parameters>) the B<DH> keytype
28 implementation supports the following:
29
30 =over 4
31
32 =item "group" (B<OSSL_PKEY_PARAM_GROUP_NAME>) <UTF8 string>
33
34 Set or gets a string that associates a B<DH> named safe prime group with known
35 values for I<p>, I<q> and I<g>.
36
37 The following values can be used by the OpenSSL's default and FIPS providers:
38 "ffdhe2048", "ffdhe3072", "ffdhe4096", "ffdhe6144", "ffdhe8192",
39 "modp_2048", "modp_3072", "modp_4096", "modp_6144", "modp_8192".
40
41 The following additional values can also be used by OpenSSL's default provider:
42 "modp_1536", "dh_1024_160", "dh_2048_224", "dh_2048_256".
43
44 DH named groups can be easily validated since the parameters are well known.
45 For protocols that only transfer I<p> and I<g> the value of I<q> can also be
46 retrieved.
47
48 =item "safeprime-generator" (B<OSSL_PKEY_PARAM_DH_GENERATOR>) <integer>
49
50 Used for DH generation of safe primes using the old generator code.
51 It is recommended to use a named safe prime group instead, if domain parameter
52 validation is required. The default value is 2.
53
54 These are not named safe prime groups so setting this value for the OpenSSL FIPS
55 provider will instead choose a named safe prime group based on the size of I<p>.
56
57 =item "encoded-pub-key" (B<OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY>) <octet string>
58
59 Used for getting and setting the encoding of the DH public key used in a key
60 exchange message for the TLS protocol.
61
62 =back
63
64 =head2 DH domain parameter / key generation parameters
65
66 In addition to the common FFC key generation parameters that all FFC key types
67 should support (see L<EVP_PKEY-FFC(7)/FFC key generation parameters>) the
68 B<DH> keytype implementation supports the following:
69
70 =over 4
71
72 =item "type" (B<OSSL_PKEY_PARAM_FFC_TYPE>) <utf8_string>
73
74 Sets the type of parameter generation. For B<DH> valid values are:
75
76 =over 4
77
78 =item "fips186_4"
79
80 =item "default"
81
82 =item "fips186_2"
83
84 These are described in L<EVP_PKEY-FFC(7)/FFC key generation parameters>
85
86 =item "group"
87
88 This specifies that a named safe prime name will be chosen using the "pbits"
89 type.
90
91 =item "generator"
92
93 A safe prime generator. See the "safeprime-generator" type above.
94
95 =back
96
97 =item "pbits" (B<OSSL_PKEY_PARAM_FFC_PBITS>) <unsigned integer>
98
99 Sets the size (in bits) of the prime 'p'.
100
101 For "fips186_4" this must be 2048.
102 For "fips186_2" this must be 1024.
103 For "group" this can be any one of 2048, 3072, 4096, 6144 or 8192.
104
105 =item "priv_len" (B<OSSL_PKEY_PARAM_DH_PRIV_LEN>) <integer>
106
107 An optional value to set the maximum length of the generated private key.
108 The default value used if this is not set is the maximum value of
109 BN_num_bits(I<q>)). The minimum value that this can be set to is 2 * s.
110 Where s is the security strength of the key which has values of
111 112, 128, 152, 176 and 200 for key sizes of 2048, 3072, 4096, 6144 and 8192.
112
113 =back
114
115 =head1 EXAMPLES
116
117 An B<EVP_PKEY> context can be obtained by calling:
118
119     EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
120
121 An B<DH> key can be generated with a named safe prime group by calling:
122
123     int priv_len = 2 * 112;
124     OSSL_PARAM params[3];
125     EVP_PKEY *pkey = NULL;
126     EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
127
128     params[0] = OSSL_PARAM_construct_utf8_string("group", "ffdhe2048", 0);
129     /* "priv_len" is optional */
130     params[1] = OSSL_PARAM_construct_int("priv_len", &priv_len);
131     params[2] = OSSL_PARAM_construct_end();
132
133     EVP_PKEY_keygen_init(pctx);
134     EVP_PKEY_CTX_set_params(pctx, params);
135     EVP_PKEY_gen(pctx, &pkey);
136     ...
137     EVP_PKEY_free(key);
138     EVP_PKEY_CTX_free(pctx);
139
140 Legacy B<DH> domain parameters can be generated by calling:
141
142     unsigned int pbits = 2048;
143     unsigned int qbits = 256;
144     int gindex = 1;
145     OSSL_PARAM params[5];
146     EVP_PKEY *param_key = NULL;
147     EVP_PKEY_CTX *pctx = NULL;
148
149     pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
150     EVP_PKEY_paramgen_init(pctx);
151
152     params[0] = OSSL_PARAM_construct_uint("pbits", &pbits);
153     params[1] = OSSL_PARAM_construct_uint("qbits", &qbits);
154     params[2] = OSSL_PARAM_construct_int("gindex", &gindex);
155     params[3] = OSSL_PARAM_construct_utf8_string("digest", "SHA384", 0);
156     params[4] = OSSL_PARAM_construct_end();
157     EVP_PKEY_CTX_set_params(pctx, params);
158
159     EVP_PKEY_gen(pctx, &param_key);
160
161     EVP_PKEY_print_params(bio_out, param_key, 0, NULL);
162     ...
163     EVP_PKEY_free(param_key);
164     EVP_PKEY_CTX_free(pctx);
165
166 An B<DH> key can be generated using domain parameters by calling:
167
168     EVP_PKEY *key = NULL;
169     EVP_PKEY_CTX *gctx = EVP_PKEY_CTX_new_from_pkey(NULL, param_key, NULL);
170
171     EVP_PKEY_keygen_init(gctx);
172     EVP_PKEY_gen(gctx, &key);
173     EVP_PKEY_print_private(bio_out, key, 0, NULL);
174     ...
175     EVP_PKEY_free(key);
176     EVP_PKEY_CTX_free(gctx);
177
178 =for comment TODO(3.0): To validate domain parameters, additional values used
179 during generation may be required to be set into the key.
180
181 =head1 CONFORMING TO
182
183 =over 4
184
185 =item RFC 7919 (TLS ffdhe named safe prime groups)
186
187 =item RFC 3526 (IKE modp named safe prime groups)
188
189 =item RFC 5114 (Additional DH named groups for dh_1024_160", "dh_2048_224"
190           and "dh_2048_256").
191
192 =back
193
194 The following sections of SP800-56Ar3:
195
196 =over 4
197
198 =item 5.5.1.1 FFC Domain Parameter Selection/Generation
199
200 =item Appendix D: FFC Safe-prime Groups
201
202 =back
203
204 The following sections of FIPS 186-4:
205
206 =over 4
207
208 =item A.1.1.2 Generation of Probable Primes p and q Using an Approved Hash Function.
209
210 =item A.2.3 Generation of canonical generator g.
211
212 =item A.2.1 Unverifiable Generation of the Generator g.
213
214 =back
215
216 =head1 SEE ALSO
217
218 L<EVP_PKEY-FFC(7)>,
219 L<EVP_KEYEXCH-DH(7)>
220 L<EVP_PKEY(3)>,
221 L<provider-keymgmt(7)>,
222 L<EVP_KEYMGMT(3)>,
223 L<OSSL_PROVIDER-default(7)>,
224 L<OSSL_PROVIDER-FIPS(7)>
225
226 =head1 COPYRIGHT
227
228 Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
229
230 Licensed under the Apache License 2.0 (the "License").  You may not use
231 this file except in compliance with the License.  You can obtain a copy
232 in the file LICENSE in the source distribution or at
233 L<https://www.openssl.org/source/license.html>.
234
235 =cut