From e9c8709b3fc1bf5c3b45c27493d1a545bfc13776 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Thu, 15 Aug 2019 17:15:43 -0700 Subject: [PATCH] Added shim functions for HMAC_CTX not available on openSSL < 1.1 --- mz_crypt_openssl.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/mz_crypt_openssl.c b/mz_crypt_openssl.c index 51b503c..9ffb893 100644 --- a/mz_crypt_openssl.c +++ b/mz_crypt_openssl.c @@ -322,6 +322,27 @@ typedef struct mz_crypt_hmac_s { /***************************************************************************/ +#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER) +static HMAC_CTX *HMAC_CTX_new(void) +{ + HMAC_CTX *ctx = OPENSSL_malloc(sizeof(HMAC_CTX)); + if (ctx != NULL) + HMAC_CTX_init(ctx); + return ctx; +} + +static void HMAC_CTX_free(HMAC_CTX *ctx) +{ + if (ctx != NULL) + { + HMAC_CTX_cleanup(ctx); + OPENSSL_free(ctx); + } +} +#endif + +/***************************************************************************/ + void mz_crypt_hmac_reset(void *handle) { mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle;