chromium/third_party/boringssl/src/crypto/evp/p_dh_asn1.c

/*
 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

#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) {}