From 6bb010f4761a303639b40d8586c7608cbe1275db Mon Sep 17 00:00:00 2001 From: Harry Chen Date: Mon, 8 Mar 2021 20:14:40 +0800 Subject: Fix NID of SM3 series in libreSSL Signed-off-by: Harry Chen --- openssl-sys/src/obj_mac.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/openssl-sys/src/obj_mac.rs b/openssl-sys/src/obj_mac.rs index 49fc4add..63f5cb38 100644 --- a/openssl-sys/src/obj_mac.rs +++ b/openssl-sys/src/obj_mac.rs @@ -920,7 +920,11 @@ pub const NID_X448: c_int = 1035; pub const NID_ED25519: c_int = 1087; #[cfg(ossl111)] pub const NID_ED448: c_int = 1088; -#[cfg(any(ossl111, libressl291))] +#[cfg(ossl111)] pub const NID_sm3: c_int = 1143; -#[cfg(any(ossl111, libressl291))] +#[cfg(libressl291)] +pub const NID_sm3: c_int = 968; +#[cfg(ossl111)] pub const NID_sm3WithRSAEncryption: c_int = 1144; +#[cfg(libressl291)] +pub const NID_sm3WithRSAEncryption: c_int = 969; -- cgit v1.2.3