mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-06-08 16:35:26 -04:00
OpenSSL: remove EVP_CIPHER_CTX_new() from the compat layer
For unknown reason, the writer of the compat layer seemed to think that this function was only present in OpenSSL 1.1. This is not the case at all, since it has been introduced in OpenSSL before version 0.9.8. Thus, there is no need to add this function to the compat layer, and it can be safely removed. Signed-off-by: Emmanuel Deloget <logout@free.fr> Acked-by: Steffan Karger <steffan.karger@fox-it.com> Message-Id: <20170629142119.29502-1-logout@free.fr> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg14989.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
9fc0e963c7
commit
a72d21a56a
2 changed files with 0 additions and 16 deletions
|
|
@ -919,7 +919,6 @@ if test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "openssl"; then
|
|||
|
||||
AC_CHECK_FUNCS(
|
||||
[ \
|
||||
EVP_CIPHER_CTX_new \
|
||||
EVP_CIPHER_CTX_free \
|
||||
HMAC_CTX_new \
|
||||
HMAC_CTX_free \
|
||||
|
|
|
|||
|
|
@ -101,21 +101,6 @@ EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *c)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if !defined(HAVE_EVP_CIPHER_CTX_NEW)
|
||||
/**
|
||||
* Allocate a new cipher context object
|
||||
*
|
||||
* @return A zero'ed cipher context object
|
||||
*/
|
||||
static inline EVP_CIPHER_CTX *
|
||||
EVP_CIPHER_CTX_new(void)
|
||||
{
|
||||
EVP_CIPHER_CTX *ctx = NULL;
|
||||
ALLOC_OBJ_CLEAR(ctx, EVP_CIPHER_CTX);
|
||||
return ctx;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if !defined(HAVE_HMAC_CTX_RESET)
|
||||
/**
|
||||
* Reset a HMAC context
|
||||
|
|
|
|||
Loading…
Reference in a new issue