From 74fd7a8ce44f9ae1d67b9ee2c06940f62516437d Mon Sep 17 00:00:00 2001 From: Nathan Mittler Date: Fri, 28 Jul 2023 07:57:06 -0700 Subject: [PATCH] Adding hmac.h to included headers This was originally going to be fixed by #101, however that PR was closed and superseded by #117, which was missing this fix. The original problem was caused by #97, which updated boringssl to a version that included [a change that removed hmac.h from ssl.h](https://github.com/google/boringssl/commit/05b360d797353dd19842aa5a38dbccbf1c867f21). This PR adds an include for hmac.h, so it is again available through boring-sys. --- boring-sys/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/boring-sys/build.rs b/boring-sys/build.rs index cd2161ba3..ac9163079 100644 --- a/boring-sys/build.rs +++ b/boring-sys/build.rs @@ -680,6 +680,7 @@ fn main() { "des.h", "dtls1.h", "hkdf.h", + "hmac.h", "hrss.h", "md4.h", "md5.h",