From b22cc12c8d6e7af6ad8dc87f5a666bb1181e079a Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Tue, 22 Apr 2025 09:29:28 -0600 Subject: [PATCH] add missing BN_CTX_init define --- wolfssl/openssl/bn.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfssl/openssl/bn.h b/wolfssl/openssl/bn.h index 8ffdb279d..45411f5c1 100644 --- a/wolfssl/openssl/bn.h +++ b/wolfssl/openssl/bn.h @@ -216,6 +216,7 @@ typedef WOLFSSL_BN_GENCB BN_GENCB; #ifndef NO_WOLFSSL_BN_CTX #define BN_CTX_new wolfSSL_BN_CTX_new +#define BN_CTX_init wolfSSL_BN_CTX_init #define BN_CTX_free wolfSSL_BN_CTX_free #else #define BN_CTX_new() ((BN_CTX*)-1)