2020-11-28 05:03:29 +08:00
|
|
|
/*
|
2022-05-03 18:52:38 +08:00
|
|
|
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
|
2020-11-28 05:03:29 +08:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (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>
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
EVP_PKEY *get_dh512(OSSL_LIB_CTX *libctx);
|
|
|
|
EVP_PKEY *get_dhx512(OSSL_LIB_CTX *libctx);
|
|
|
|
EVP_PKEY *get_dh1024dsa(OSSL_LIB_CTX *libct);
|
|
|
|
EVP_PKEY *get_dh2048(OSSL_LIB_CTX *libctx);
|
2022-02-24 05:05:22 +08:00
|
|
|
EVP_PKEY *get_dh4096(OSSL_LIB_CTX *libctx);
|
2020-11-28 05:03:29 +08:00
|
|
|
#endif
|