From 0f5f2d4470d4edbfd27c746ec18eff7ebdff6997 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Sat, 21 Jan 2023 13:54:48 -0800 Subject: [PATCH] crypto: include `hmac.h` in `crypto_util.h` `crypto_util.h` references `HMAC_CTX_free` but doesn't include the header file that contains it. PR-URL: https://github.com/nodejs/node/pull/46279 Reviewed-By: Filip Skokan Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- src/crypto/crypto_util.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index fd014e703454dd..bf19334cf61fa4 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -12,12 +12,13 @@ #include "util.h" #include "v8.h" +#include +#include #include #include -#include +#include #include #include -#include #include #ifndef OPENSSL_NO_ENGINE # include