]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/dh.h
DH: add CHANGES entry listing the deprecated DH functions.
[thirdparty/openssl.git] / include / openssl / dh.h
CommitLineData
21dcbebc 1/*
feeb7ecd 2 * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
ae4186b0
DMSP
10#ifndef OPENSSL_DH_H
11# define OPENSSL_DH_H
d86167ec
DMSP
12# pragma once
13
14# include <openssl/macros.h>
936c2b9e 15# ifndef OPENSSL_NO_DEPRECATED_3_0
d86167ec
DMSP
16# define HEADER_DH_H
17# endif
d02b48c6 18
98186eb4 19# include <openssl/opensslconf.h>
d3ae5b1c 20
3c27208f 21# ifndef OPENSSL_NO_DH
2c64df66
P
22# include <openssl/e_os2.h>
23# include <openssl/bio.h>
24# include <openssl/asn1.h>
25# include <openssl/types.h>
26# ifndef OPENSSL_NO_DEPRECATED_1_1_0
27# include <openssl/bn.h>
28# endif
29# include <openssl/dherr.h>
5e3225cc 30
2c64df66 31# ifdef __cplusplus
3c27208f 32extern "C" {
2c64df66 33# endif
3c27208f 34
2c64df66
P
35# ifndef OPENSSL_DH_MAX_MODULUS_BITS
36# define OPENSSL_DH_MAX_MODULUS_BITS 10000
37# endif
83c3410b 38
2c64df66 39# define OPENSSL_DH_FIPS_MIN_MODULUS_BITS 1024
0f113f3e 40
2c64df66 41# define DH_FLAG_CACHE_MONT_P 0x01
5584f65a 42
2c64df66 43# ifndef OPENSSL_NO_DEPRECATED_1_1_0
5584f65a
MC
44/*
45 * Does nothing. Previously this switched off constant time behaviour.
46 */
2c64df66
P
47# define DH_FLAG_NO_EXP_CONSTTIME 0x00
48# endif
dfeab068 49
0f113f3e
MC
50/*
51 * If this flag is set the DH method is FIPS compliant and can be used in
52 * FIPS mode. This is set in the validated module method. If an application
8483a003 53 * sets this flag in its own methods it is its responsibility to ensure the
0f113f3e 54 * result is compliant.
4960411e
DSH
55 */
56
2c64df66 57# define DH_FLAG_FIPS_METHOD 0x0400
4960411e 58
0f113f3e
MC
59/*
60 * If this flag is set the operations normally disabled in FIPS mode are
4960411e
DSH
61 * permitted it is then the applications responsibility to ensure that the
62 * usage is compliant.
63 */
64
2c64df66 65# define DH_FLAG_NON_FIPS_ALLOW 0x0400
4960411e 66
3a87a9b9
GT
67/* Already defined in ossl_typ.h */
68/* typedef struct dh_st DH; */
69/* typedef struct dh_method DH_METHOD; */
13066cee 70
599eccfc
RS
71DECLARE_ASN1_ITEM(DHparams)
72
2c64df66
P
73# define DH_GENERATOR_2 2
74# define DH_GENERATOR_3 3
75# define DH_GENERATOR_5 5
d02b48c6
RE
76
77/* DH_check error codes */
92dcfb79
MC
78/*
79 * NB: These values must align with the equivalently named macros in
80 * internal/ffc.h.
81 */
2c64df66
P
82# define DH_CHECK_P_NOT_PRIME 0x01
83# define DH_CHECK_P_NOT_SAFE_PRIME 0x02
84# define DH_UNABLE_TO_CHECK_GENERATOR 0x04
85# define DH_NOT_SUITABLE_GENERATOR 0x08
86# define DH_CHECK_Q_NOT_PRIME 0x10
87# define DH_CHECK_INVALID_Q_VALUE 0x20
88# define DH_CHECK_INVALID_J_VALUE 0x40
89# define DH_MODULUS_TOO_SMALL 0x80
90# define DH_MODULUS_TOO_LARGE 0x100
d02b48c6 91
bf3d6c0c 92/* DH_check_pub_key error codes */
2c64df66
P
93# define DH_CHECK_PUBKEY_TOO_SMALL 0x01
94# define DH_CHECK_PUBKEY_TOO_LARGE 0x02
95# define DH_CHECK_PUBKEY_INVALID 0x04
bf3d6c0c 96
0f113f3e
MC
97/*
98 * primes p where (p-1)/2 is prime too are called "safe"; we define this for
99 * backward compatibility:
100 */
2c64df66 101# define DH_CHECK_P_NOT_STRONG_PRIME DH_CHECK_P_NOT_SAFE_PRIME
4486d0cd 102
f11f86f6 103/* DH parameter generation types used by EVP_PKEY_CTX_set_dh_paramgen_type() */
2c64df66
P
104# define DH_PARAMGEN_TYPE_GENERATOR 0 /* Use a generator g */
105# define DH_PARAMGEN_TYPE_FIPS_186_2 1 /* Use legacy FIPS186-2 standard */
106# define DH_PARAMGEN_TYPE_FIPS_186_4 2 /* Use FIPS186-4 standard */
f11f86f6 107
2c64df66 108# define d2i_DHparams_fp(fp,x) \
ff79a244
MC
109 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \
110 (char *(*)())d2i_DHparams, \
111 (fp), \
112 (unsigned char **)(x))
2c64df66 113# define i2d_DHparams_fp(fp,x) \
ff79a244 114 ASN1_i2d_fp(i2d_DHparams,(fp), (unsigned char *)(x))
2c64df66 115# define d2i_DHparams_bio(bp,x) \
ff79a244 116 ASN1_d2i_bio_of(DH, DH_new, d2i_DHparams, bp, x)
2c64df66 117# define i2d_DHparams_bio(bp,x) \
9fdcc21f 118 ASN1_i2d_bio_of(DH,i2d_DHparams,bp,x)
ff79a244 119
2c64df66 120# define d2i_DHxparams_fp(fp,x) \
ff79a244
MC
121 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \
122 (char *(*)())d2i_DHxparams, \
123 (fp), \
124 (unsigned char **)(x))
2c64df66 125# define i2d_DHxparams_fp(fp,x) \
ff79a244 126 ASN1_i2d_fp(i2d_DHxparams,(fp), (unsigned char *)(x))
2c64df66 127# define d2i_DHxparams_bio(bp,x) \
ff79a244 128 ASN1_d2i_bio_of(DH, DH_new, d2i_DHxparams, bp, x)
2c64df66 129# define i2d_DHxparams_bio(bp,x) \
9fdcc21f 130 ASN1_i2d_bio_of(DH, i2d_DHxparams, bp, x)
d02b48c6 131
9fdcc21f 132DECLARE_ASN1_DUP_FUNCTION_name(DH, DHparams)
f4274da1 133
f971ccb2 134const DH_METHOD *DH_OpenSSL(void);
13066cee 135
cb78486d
GT
136void DH_set_default_method(const DH_METHOD *meth);
137const DH_METHOD *DH_get_default_method(void);
138int DH_set_method(DH *dh, const DH_METHOD *meth);
139DH *DH_new_method(ENGINE *engine);
13066cee 140
0f113f3e
MC
141DH *DH_new(void);
142void DH_free(DH *dh);
143int DH_up_ref(DH *dh);
26c79d56 144int DH_bits(const DH *dh);
0f113f3e
MC
145int DH_size(const DH *dh);
146int DH_security_bits(const DH *dh);
2c64df66 147# define DH_get_ex_new_index(l, p, newf, dupf, freef) \
e6390aca 148 CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_DH, l, p, newf, dupf, freef)
dd9d233e
DSH
149int DH_set_ex_data(DH *d, int idx, void *arg);
150void *DH_get_ex_data(DH *d, int idx);
e9224c71
GT
151
152/* Deprecated version */
98186eb4 153DEPRECATEDIN_0_9_8(DH *DH_generate_parameters(int prime_len, int generator,
0f113f3e
MC
154 void (*callback) (int, int,
155 void *),
98186eb4 156 void *cb_arg))
e9224c71
GT
157
158/* New version */
0f113f3e
MC
159int DH_generate_parameters_ex(DH *dh, int prime_len, int generator,
160 BN_GENCB *cb);
161
b0004708
PY
162int DH_check_params_ex(const DH *dh);
163int DH_check_ex(const DH *dh);
164int DH_check_pub_key_ex(const DH *dh, const BIGNUM *pub_key);
26505153 165int DH_check_params(const DH *dh, int *ret);
0f113f3e
MC
166int DH_check(const DH *dh, int *codes);
167int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *codes);
168int DH_generate_key(DH *dh);
169int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
170int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh);
9fdcc21f
DO
171DECLARE_ASN1_ENCODE_FUNCTIONS_only(DH, DHparams)
172DECLARE_ASN1_ENCODE_FUNCTIONS_only(DH, DHxparams)
2c64df66 173# ifndef OPENSSL_NO_STDIO
0f113f3e 174int DHparams_print_fp(FILE *fp, const DH *x);
2c64df66 175# endif
0f113f3e 176int DHparams_print(BIO *bp, const DH *x);
d02b48c6 177
20bee968
DSH
178/* RFC 5114 parameters */
179DH *DH_get_1024_160(void);
180DH *DH_get_2048_224(void);
181DH *DH_get_2048_256(void);
182
ca2bf555 183/* Named parameters, currently RFC7919 and RFC3526 */
7806a782 184DH *DH_new_by_nid(int nid);
ca2bf555 185int DH_get_nid(DH *dh);
7806a782 186
2c64df66 187# ifndef OPENSSL_NO_CMS
dc1ce3bc 188/* RFC2631 KDF */
0f113f3e
MC
189int DH_KDF_X9_42(unsigned char *out, size_t outlen,
190 const unsigned char *Z, size_t Zlen,
191 ASN1_OBJECT *key_oid,
192 const unsigned char *ukm, size_t ukmlen, const EVP_MD *md);
2c64df66 193# endif
0f113f3e 194
fd809cfd
RL
195void DH_get0_pqg(const DH *dh,
196 const BIGNUM **p, const BIGNUM **q, const BIGNUM **g);
0aeddcfa 197int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
fd809cfd
RL
198void DH_get0_key(const DH *dh,
199 const BIGNUM **pub_key, const BIGNUM **priv_key);
0aeddcfa 200int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
6db7fadf
DMSP
201const BIGNUM *DH_get0_p(const DH *dh);
202const BIGNUM *DH_get0_q(const DH *dh);
203const BIGNUM *DH_get0_g(const DH *dh);
204const BIGNUM *DH_get0_priv_key(const DH *dh);
205const BIGNUM *DH_get0_pub_key(const DH *dh);
0aeddcfa
MC
206void DH_clear_flags(DH *dh, int flags);
207int DH_test_flags(const DH *dh, int flags);
208void DH_set_flags(DH *dh, int flags);
209ENGINE *DH_get0_engine(DH *d);
210long DH_get_length(const DH *dh);
211int DH_set_length(DH *dh, long length);
212
17e01abb
MC
213DH_METHOD *DH_meth_new(const char *name, int flags);
214void DH_meth_free(DH_METHOD *dhm);
215DH_METHOD *DH_meth_dup(const DH_METHOD *dhm);
216const char *DH_meth_get0_name(const DH_METHOD *dhm);
217int DH_meth_set1_name(DH_METHOD *dhm, const char *name);
693be9a2 218int DH_meth_get_flags(const DH_METHOD *dhm);
17e01abb
MC
219int DH_meth_set_flags(DH_METHOD *dhm, int flags);
220void *DH_meth_get0_app_data(const DH_METHOD *dhm);
221int DH_meth_set0_app_data(DH_METHOD *dhm, void *app_data);
222int (*DH_meth_get_generate_key(const DH_METHOD *dhm)) (DH *);
223int DH_meth_set_generate_key(DH_METHOD *dhm, int (*generate_key) (DH *));
224int (*DH_meth_get_compute_key(const DH_METHOD *dhm))
225 (unsigned char *key, const BIGNUM *pub_key, DH *dh);
226int DH_meth_set_compute_key(DH_METHOD *dhm,
227 int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh));
228int (*DH_meth_get_bn_mod_exp(const DH_METHOD *dhm))
229 (const DH *, BIGNUM *, const BIGNUM *, const BIGNUM *, const BIGNUM *,
230 BN_CTX *, BN_MONT_CTX *);
231int DH_meth_set_bn_mod_exp(DH_METHOD *dhm,
232 int (*bn_mod_exp) (const DH *, BIGNUM *, const BIGNUM *, const BIGNUM *,
233 const BIGNUM *, BN_CTX *, BN_MONT_CTX *));
234int (*DH_meth_get_init(const DH_METHOD *dhm))(DH *);
235int DH_meth_set_init(DH_METHOD *dhm, int (*init)(DH *));
236int (*DH_meth_get_finish(const DH_METHOD *dhm)) (DH *);
237int DH_meth_set_finish(DH_METHOD *dhm, int (*finish) (DH *));
238int (*DH_meth_get_generate_params(const DH_METHOD *dhm))
239 (DH *, int, int, BN_GENCB *);
240int DH_meth_set_generate_params(DH_METHOD *dhm,
241 int (*generate_params) (DH *, int, int, BN_GENCB *));
242
0aeddcfa 243
2c64df66 244# define EVP_PKEY_CTX_set_dh_paramgen_prime_len(ctx, len) \
0f113f3e 245 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \
2c64df66 246 EVP_PKEY_CTRL_DH_PARAMGEN_PRIME_LEN, len, NULL)
0f113f3e 247
2c64df66 248# define EVP_PKEY_CTX_set_dh_paramgen_subprime_len(ctx, len) \
0f113f3e 249 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \
2c64df66 250 EVP_PKEY_CTRL_DH_PARAMGEN_SUBPRIME_LEN, len, NULL)
0f113f3e 251
2c64df66 252# define EVP_PKEY_CTX_set_dh_paramgen_type(ctx, typ) \
0f113f3e 253 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \
2c64df66 254 EVP_PKEY_CTRL_DH_PARAMGEN_TYPE, typ, NULL)
0f113f3e 255
2c64df66 256# define EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, gen) \
0f113f3e 257 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \
2c64df66 258 EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR, gen, NULL)
0f113f3e 259
2c64df66 260# define EVP_PKEY_CTX_set_dh_rfc5114(ctx, gen) \
0f113f3e 261 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_PARAMGEN, \
2c64df66 262 EVP_PKEY_CTRL_DH_RFC5114, gen, NULL)
0f113f3e 263
2c64df66 264# define EVP_PKEY_CTX_set_dhx_rfc5114(ctx, gen) \
0f113f3e 265 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_PARAMGEN, \
2c64df66 266 EVP_PKEY_CTRL_DH_RFC5114, gen, NULL)
0f113f3e 267
2c64df66 268# define EVP_PKEY_CTX_set_dh_nid(ctx, nid) \
d59d853a
DSH
269 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, \
270 EVP_PKEY_OP_PARAMGEN | EVP_PKEY_OP_KEYGEN, \
271 EVP_PKEY_CTRL_DH_NID, nid, NULL)
272
35aca9ec 273int EVP_PKEY_CTX_set_dh_pad(EVP_PKEY_CTX *ctx, int pad);
f4403a1f 274
2c64df66
P
275# define EVP_PKEY_CTX_set_dh_kdf_type(ctx, kdf) \
276 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
277 EVP_PKEY_CTRL_DH_KDF_TYPE, kdf, NULL)
278
279# define EVP_PKEY_CTX_get_dh_kdf_type(ctx) \
280 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
281 EVP_PKEY_CTRL_DH_KDF_TYPE, -2, NULL)
282
283# define EVP_PKEY_CTX_set0_dh_kdf_oid(ctx, oid) \
284 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
285 EVP_PKEY_CTRL_DH_KDF_OID, 0, (void *)(oid))
286
287# define EVP_PKEY_CTX_get0_dh_kdf_oid(ctx, poid) \
288 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
289 EVP_PKEY_CTRL_GET_DH_KDF_OID, 0, (void *)(poid))
290
291# define EVP_PKEY_CTX_set_dh_kdf_md(ctx, md) \
292 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
293 EVP_PKEY_CTRL_DH_KDF_MD, 0, (void *)(md))
294
295# define EVP_PKEY_CTX_get_dh_kdf_md(ctx, pmd) \
296 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
297 EVP_PKEY_CTRL_GET_DH_KDF_MD, 0, (void *)(pmd))
298
299# define EVP_PKEY_CTX_set_dh_kdf_outlen(ctx, len) \
300 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
301 EVP_PKEY_CTRL_DH_KDF_OUTLEN, len, NULL)
302
303# define EVP_PKEY_CTX_get_dh_kdf_outlen(ctx, plen) \
304 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
305 EVP_PKEY_CTRL_GET_DH_KDF_OUTLEN, 0, (void *)(plen))
306
307# define EVP_PKEY_CTX_set0_dh_kdf_ukm(ctx, p, plen) \
308 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
309 EVP_PKEY_CTRL_DH_KDF_UKM, plen, (void *)(p))
310
311# define EVP_PKEY_CTX_get0_dh_kdf_ukm(ctx, p) \
312 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_DERIVE, \
313 EVP_PKEY_CTRL_GET_DH_KDF_UKM, 0, (void *)(p))
314
315# define EVP_PKEY_CTRL_DH_PARAMGEN_PRIME_LEN (EVP_PKEY_ALG_CTRL + 1)
316# define EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR (EVP_PKEY_ALG_CTRL + 2)
317# define EVP_PKEY_CTRL_DH_RFC5114 (EVP_PKEY_ALG_CTRL + 3)
318# define EVP_PKEY_CTRL_DH_PARAMGEN_SUBPRIME_LEN (EVP_PKEY_ALG_CTRL + 4)
319# define EVP_PKEY_CTRL_DH_PARAMGEN_TYPE (EVP_PKEY_ALG_CTRL + 5)
320# define EVP_PKEY_CTRL_DH_KDF_TYPE (EVP_PKEY_ALG_CTRL + 6)
321# define EVP_PKEY_CTRL_DH_KDF_MD (EVP_PKEY_ALG_CTRL + 7)
322# define EVP_PKEY_CTRL_GET_DH_KDF_MD (EVP_PKEY_ALG_CTRL + 8)
323# define EVP_PKEY_CTRL_DH_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 9)
324# define EVP_PKEY_CTRL_GET_DH_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 10)
325# define EVP_PKEY_CTRL_DH_KDF_UKM (EVP_PKEY_ALG_CTRL + 11)
326# define EVP_PKEY_CTRL_GET_DH_KDF_UKM (EVP_PKEY_ALG_CTRL + 12)
327# define EVP_PKEY_CTRL_DH_KDF_OID (EVP_PKEY_ALG_CTRL + 13)
328# define EVP_PKEY_CTRL_GET_DH_KDF_OID (EVP_PKEY_ALG_CTRL + 14)
329# define EVP_PKEY_CTRL_DH_NID (EVP_PKEY_ALG_CTRL + 15)
330# define EVP_PKEY_CTRL_DH_PAD (EVP_PKEY_ALG_CTRL + 16)
bd59f2b9
DSH
331
332/* KDF types */
2c64df66
P
333# define EVP_PKEY_DH_KDF_NONE 1
334# ifndef OPENSSL_NO_CMS
335# define EVP_PKEY_DH_KDF_X9_42 2
336# endif
3ba0885a 337
6d311938 338
0cd0a820 339# ifdef __cplusplus
d02b48c6 340}
0cd0a820 341# endif
3c27208f 342# endif
d02b48c6 343#endif