b1f37c6018bb34556a21539067faacf4ca171c40
[openssl.git] / include / crypto / dh.h
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
10 #include <openssl/dh.h>
11 #include "internal/ffc.h"
12
13 int dh_compute_key(OPENSSL_CTX *ctx, unsigned char *key, const BIGNUM *pub_key,
14                    DH *dh);
15 int dh_compute_key_padded(OPENSSL_CTX *ctx, unsigned char *key,
16                           const BIGNUM *pub_key, DH *dh);
17 FFC_PARAMS *dh_get0_params(DH *dh);