From cfe524c10bb510be5f78e2a4e50b0d06c945132c Mon Sep 17 00:00:00 2001 From: 0x676e67 Date: Fri, 21 Mar 2025 16:56:19 +0800 Subject: [PATCH] build: fix `pq-experimental` feature build --- boring/src/ssl/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/boring/src/ssl/mod.rs b/boring/src/ssl/mod.rs index 29418e03..5a671963 100644 --- a/boring/src/ssl/mod.rs +++ b/boring/src/ssl/mod.rs @@ -765,10 +765,6 @@ impl SslCurve { pub const FFDHE3072: SslCurve = SslCurve(ffi::SSL_CURVE_DHE3072 as _); - #[cfg(not(feature = "fips"))] - pub const X25519_KYBER768_DRAFT00: SslCurve = - SslCurve(ffi::SSL_CURVE_X25519_KYBER768_DRAFT00 as _); - #[cfg(feature = "pq-experimental")] pub const X25519_MLKEM768: SslCurve = SslCurve(ffi::SSL_CURVE_X25519_MLKEM768 as _);