diff --git a/curve25519-dalek/src/scalar.rs b/curve25519-dalek/src/scalar.rs index def7cec..7a76eb4 100644 --- a/curve25519-dalek/src/scalar.rs +++ b/curve25519-dalek/src/scalar.rs @@ -844,7 +844,6 @@ impl Scalar { } /// Get the bits of the scalar, in little-endian order - #[cfg(not(curve25519_dalek_backend = "u32e_backend"))] pub(crate) fn bits_le(&self) -> impl DoubleEndedIterator + '_ { (0..256).map(|i| { // As i runs from 0..256, the bottom 3 bits index the bit, while the upper bits index