VirtualBox

source: vbox/trunk/src/libs/openssl-3.1.2/include/crypto/dh.h@ 101021

Last change on this file since 101021 was 101021, checked in by vboxsync, 15 months ago

openssl-3.1.2: Applied and adjusted our OpenSSL changes to 3.1.0. bugref:10519

File size: 2.9 KB
Line 
1/*
2 * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
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
8 */
9
10#ifndef OSSL_CRYPTO_DH_H
11# define OSSL_CRYPTO_DH_H
12# ifndef RT_WITHOUT_PRAGMA_ONCE /* VBOX */
13# pragma once
14# endif /* VBOX */
15
16# include <openssl/core.h>
17# include <openssl/params.h>
18# include <openssl/dh.h>
19# include "internal/ffc.h"
20
21DH *ossl_dh_new_by_nid_ex(OSSL_LIB_CTX *libctx, int nid);
22DH *ossl_dh_new_ex(OSSL_LIB_CTX *libctx);
23void ossl_dh_set0_libctx(DH *d, OSSL_LIB_CTX *libctx);
24int ossl_dh_generate_ffc_parameters(DH *dh, int type, int pbits, int qbits,
25 BN_GENCB *cb);
26int ossl_dh_generate_public_key(BN_CTX *ctx, const DH *dh,
27 const BIGNUM *priv_key, BIGNUM *pub_key);
28int ossl_dh_get_named_group_uid_from_size(int pbits);
29const char *ossl_dh_gen_type_id2name(int id);
30int ossl_dh_gen_type_name2id(const char *name, int type);
31void ossl_dh_cache_named_group(DH *dh);
32int ossl_dh_is_named_safe_prime_group(const DH *dh);
33
34FFC_PARAMS *ossl_dh_get0_params(DH *dh);
35int ossl_dh_get0_nid(const DH *dh);
36int ossl_dh_params_fromdata(DH *dh, const OSSL_PARAM params[]);
37int ossl_dh_key_fromdata(DH *dh, const OSSL_PARAM params[], int include_private);
38int ossl_dh_params_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
39int ossl_dh_key_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[],
40 int include_private);
41DH *ossl_dh_key_from_pkcs8(const PKCS8_PRIV_KEY_INFO *p8inf,
42 OSSL_LIB_CTX *libctx, const char *propq);
43int ossl_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
44
45int ossl_dh_check_pub_key_partial(const DH *dh, const BIGNUM *pub_key, int *ret);
46int ossl_dh_check_priv_key(const DH *dh, const BIGNUM *priv_key, int *ret);
47int ossl_dh_check_pairwise(const DH *dh);
48
49const DH_METHOD *ossl_dh_get_method(const DH *dh);
50
51int ossl_dh_buf2key(DH *key, const unsigned char *buf, size_t len);
52size_t ossl_dh_key2buf(const DH *dh, unsigned char **pbuf, size_t size,
53 int alloc);
54
55int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen,
56 const unsigned char *Z, size_t Zlen,
57 const char *cek_alg,
58 const unsigned char *ukm, size_t ukmlen,
59 const EVP_MD *md,
60 OSSL_LIB_CTX *libctx, const char *propq);
61int ossl_dh_is_foreign(const DH *dh);
62DH *ossl_dh_dup(const DH *dh, int selection);
63
64#endif /* OSSL_CRYPTO_DH_H */
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