#include <openssl/evp.h>
#include <openssl/bn.h>
#include <openssl/dh.h>
#include <openssl/err.h>
#include "internal.h"
#include "../internal.h"
static void dh_free(EVP_PKEY *pkey) { … }
static int dh_size(const EVP_PKEY *pkey) { … }
static int dh_bits(const EVP_PKEY *pkey) { … }
static int dh_param_missing(const EVP_PKEY *pkey) { … }
static int dh_param_copy(EVP_PKEY *to, const EVP_PKEY *from) { … }
static int dh_param_cmp(const EVP_PKEY *a, const EVP_PKEY *b) { … }
static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) { … }
const EVP_PKEY_ASN1_METHOD dh_asn1_meth = …;
int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key) { … }
int EVP_PKEY_assign_DH(EVP_PKEY *pkey, DH *key) { … }
DH *EVP_PKEY_get0_DH(const EVP_PKEY *pkey) { … }
DH *EVP_PKEY_get1_DH(const EVP_PKEY *pkey) { … }