NFC: Reduce scope of #[allow(unused_variables)] in X25519.

This commit is contained in:
Brian Smith 2023-10-04 10:53:03 -07:00
parent 38b9bb7de0
commit 5a5f6d71c6

View File

@ -99,15 +99,11 @@ fn x25519_ecdh(
let my_private_key = ops::MaskedScalar::from_bytes_masked(*my_private_key); let my_private_key = ops::MaskedScalar::from_bytes_masked(*my_private_key);
let peer_public_key: &[u8; PUBLIC_KEY_LEN] = peer_public_key.as_slice_less_safe().try_into()?; let peer_public_key: &[u8; PUBLIC_KEY_LEN] = peer_public_key.as_slice_less_safe().try_into()?;
#[cfg_attr(
not(all(not(target_os = "ios"), target_arch = "arm")),
allow(unused_variables)
)]
fn scalar_mult( fn scalar_mult(
out: &mut ops::EncodedPoint, out: &mut ops::EncodedPoint,
scalar: &ops::MaskedScalar, scalar: &ops::MaskedScalar,
point: &ops::EncodedPoint, point: &ops::EncodedPoint,
cpu_features: cpu::Features, #[allow(unused_variables)] cpu_features: cpu::Features,
) { ) {
#[cfg(all(not(target_os = "ios"), target_arch = "arm"))] #[cfg(all(not(target_os = "ios"), target_arch = "arm"))]
{ {