From 5fbf9ad4fccf3b1ed5fe184cc325ef3db5fdb5e9 Mon Sep 17 00:00:00 2001 From: Evan Rittenhouse Date: Wed, 16 Oct 2024 20:18:54 -0500 Subject: [PATCH] boring-sys: include HPKE header file for bindgen BoringSSL doesn't expose these APIs for FIPs builds, so we gate them here as well --- boring-sys/build/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boring-sys/build/main.rs b/boring-sys/build/main.rs index 9b65492a..7966e215 100644 --- a/boring-sys/build/main.rs +++ b/boring-sys/build/main.rs @@ -728,6 +728,8 @@ fn main() { "des.h", "dtls1.h", "hkdf.h", + #[cfg(not(feature = "fips"))] + "hpke.h", "hmac.h", "hrss.h", "md4.h",