fix formatting on master

This commit is contained in:
Andrew Poelstra 2022-11-22 15:27:19 +00:00
parent 17c8751d23
commit c0ae3e7d35
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 2 deletions

View File

@ -71,8 +71,7 @@ impl PartialEq for SecretKey {
/// This implementation is designed to be constant time to help prevent side channel attacks. /// This implementation is designed to be constant time to help prevent side channel attacks.
#[inline] #[inline]
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
let accum = self.0.iter().zip(&other.0) let accum = self.0.iter().zip(&other.0).fold(0, |accum, (a, b)| accum | a ^ b);
.fold(0, |accum, (a, b)| accum | a ^ b);
unsafe { core::ptr::read_volatile(&accum) == 0 } unsafe { core::ptr::read_volatile(&accum) == 0 }
} }
} }