2021-09-05 09:41:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
2021-06-03 08:37:05 +02:00
|
|
|
*
|
2021-09-05 09:41:00 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-14 14:59:18 +00:00
|
|
|
#include <openssl/bn.h>
|
2021-10-04 16:51:02 +00:00
|
|
|
#include <openssl/dh.h>
|
2021-09-14 14:59:18 +00:00
|
|
|
#include <openssl/ecdsa.h>
|
2021-09-05 09:41:00 +00:00
|
|
|
#include <openssl/err.h>
|
2022-12-26 14:25:18 +02:00
|
|
|
#include <openssl/evp.h>
|
2021-09-26 18:53:38 +00:00
|
|
|
#include <openssl/opensslv.h>
|
|
|
|
#include <openssl/rsa.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Limit the size of public exponents.
|
|
|
|
*/
|
|
|
|
#ifndef RSA_MAX_PUBEXP_BITS
|
|
|
|
#define RSA_MAX_PUBEXP_BITS 35
|
|
|
|
#endif /* ifndef RSA_MAX_PUBEXP_BITS */
|
|
|
|
|
2021-09-08 16:31:56 +10:00
|
|
|
#if !HAVE_EVP_PKEY_EQ
|
|
|
|
#define EVP_PKEY_eq EVP_PKEY_cmp
|
|
|
|
#endif
|