]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/crypto/dh.h
Add DSA keygen to provider
[thirdparty/openssl.git] / include / crypto / dh.h
CommitLineData
62f49b90
SL
1/*
2 * Copyright 2020 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
0abae163 10#include <openssl/core.h>
62f49b90 11#include <openssl/dh.h>
dc8de3e6 12#include "internal/ffc.h"
62f49b90 13
8083fd3a
SL
14DH *dh_new_with_ctx(OPENSSL_CTX *libctx);
15
16int dh_generate_ffc_parameters(DH *dh, int bits,
f11f86f6 17 int qbits, int gindex, BN_GENCB *cb);
8083fd3a
SL
18int dh_generate_public_key(BN_CTX *ctx, DH *dh, const BIGNUM *priv_key,
19 BIGNUM *pub_key);
f11f86f6 20
dc8de3e6 21FFC_PARAMS *dh_get0_params(DH *dh);
ca2bf555 22int dh_get0_nid(const DH *dh);
0abae163 23int dh_key_fromdata(DH *dh, const OSSL_PARAM params[]);
8083fd3a
SL
24
25int dh_check_pub_key_partial(const DH *dh, const BIGNUM *pub_key, int *ret);
26int dh_check_priv_key(const DH *dh, const BIGNUM *priv_key, int *ret);
27int dh_check_pairwise(DH *dh);
c518117b
RL
28
29const DH_METHOD *dh_get_method(const DH *dh);