From 6a57e5de538cd39deba29bf47996e8b67d3efd63 Mon Sep 17 00:00:00 2001 From: Lindsay Stewart Date: Fri, 2 Aug 2024 12:25:38 -0700 Subject: [PATCH] Just delete TESTING_PQ --- bindings/rust/s2n-tls/src/security.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bindings/rust/s2n-tls/src/security.rs b/bindings/rust/s2n-tls/src/security.rs index 8b23307c1cd..3289c779edb 100644 --- a/bindings/rust/s2n-tls/src/security.rs +++ b/bindings/rust/s2n-tls/src/security.rs @@ -84,9 +84,6 @@ pub const DEFAULT: Policy = policy!("default"); /// pub const DEFAULT_TLS13: Policy = policy!("default_tls13"); -#[cfg(feature = "pq")] -pub const TESTING_PQ: Policy = policy!("PQ-TLS-1-0-2021-05-26"); - #[cfg(feature = "pq")] pub const DEFAULT_PQ: Policy = policy!("default_pq"); @@ -94,7 +91,5 @@ pub const ALL_POLICIES: &[Policy] = &[ DEFAULT, DEFAULT_TLS13, #[cfg(feature = "pq")] - TESTING_PQ, - #[cfg(feature = "pq")] DEFAULT_PQ, ];