35 lines
745 B
C
35 lines
745 B
C
/* apk_openssl.h - Alpine Package Keeper (APK)
|
|
*
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#ifndef APK_SSL_COMPAT_H
|
|
#define APK_SSL_COMPAT_H
|
|
|
|
#include <openssl/opensslv.h>
|
|
#include <openssl/crypto.h>
|
|
#include <openssl/evp.h>
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
#include <openssl/engine.h>
|
|
#endif
|
|
|
|
#if OPENSSL_VERSION_NUMBER < 0x1010000fL || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
|
|
|
|
static inline EVP_MD_CTX *EVP_MD_CTX_new(void)
|
|
{
|
|
return EVP_MD_CTX_create();
|
|
}
|
|
|
|
static inline void EVP_MD_CTX_free(EVP_MD_CTX *mdctx)
|
|
{
|
|
return EVP_MD_CTX_destroy(mdctx);
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|