From 9094552b5de9ba37466171ddf14d6aa25a908194 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 21 Feb 2025 17:47:14 +0100 Subject: [PATCH] Remove `U3293` This was originally added for ML-DSA, however it turns out it was unnecessary --- src/sizes.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/sizes.rs b/src/sizes.rs index dea0ee1..2605553 100644 --- a/src/sizes.rs +++ b/src/sizes.rs @@ -809,11 +809,7 @@ mod extra_sizes { // // Includes the public key, private key, and signature sizes not covered elsewhere, as well as // some intermediate value sizes. - // - // U3293 is not required for ML-DSA, but was included in an early iteration of this section - // (before the `ml_dsa` crate was created). So it is included here for backward compatibility. pub type U2420 = uint!(0 0 1 0 1 1 1 0 1 0 0 1); - pub type U3293 = uint!(1 0 1 1 1 0 1 1 0 0 1 1); pub type U3309 = uint!(1 0 1 1 0 1 1 1 0 0 1 1); pub type U4480 = uint!(0 0 0 0 0 0 0 1 1 0 0 0 1); pub type U4544 = uint!(0 0 0 0 0 0 1 1 1 0 0 0 1); @@ -1061,7 +1057,6 @@ mod extra_sizes { // ML-DSA sizes impl_array_sizes! { 2420 => U2420, - 3293 => U3293, 3309 => U3309, 4480 => U4480, 4544 => U4544,