From 3c53dee153d4ab801cde3e10d914a16789464a6b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 12 Feb 2024 20:33:43 -0500 Subject: [PATCH] Added binding for EVP_default_properties_enable_fips --- openssl-sys/src/handwritten/evp.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/openssl-sys/src/handwritten/evp.rs b/openssl-sys/src/handwritten/evp.rs index 7da39e3bd8..e9a7413c21 100644 --- a/openssl-sys/src/handwritten/evp.rs +++ b/openssl-sys/src/handwritten/evp.rs @@ -69,6 +69,7 @@ cfg_if! { if #[cfg(ossl300)] { extern "C" { pub fn EVP_default_properties_is_fips_enabled(libctx: *mut OSSL_LIB_CTX) -> c_int; + pub fn EVP_default_properties_enable_fips(libctx: *mut OSSL_LIB_CTX, enable: c_int) -> c_int; } } }