From aed6f36732ad16bff61b1e77bea799d57989cc9a Mon Sep 17 00:00:00 2001 From: Brooks Date: Thu, 3 Oct 2024 10:07:46 -0400 Subject: [PATCH] Adds LtHash::identity() (#3057) --- lattice-hash/src/lt_hash.rs | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/lattice-hash/src/lt_hash.rs b/lattice-hash/src/lt_hash.rs index ef1ec4b6f41b4d..d334c54882de41 100644 --- a/lattice-hash/src/lt_hash.rs +++ b/lattice-hash/src/lt_hash.rs @@ -14,15 +14,21 @@ pub struct LtHash(pub [u16; LtHash::NUM_ELEMENTS]); impl LtHash { pub const NUM_ELEMENTS: usize = 1024; + /// Returns the identity value for LtHash + #[must_use] + pub const fn identity() -> Self { + Self([0; Self::NUM_ELEMENTS]) + } + /// Creates a new LtHash from `hasher` /// /// The caller should hash in all inputs of interest prior to calling. #[must_use] pub fn with(hasher: &blake3::Hasher) -> Self { let mut reader = hasher.finalize_xof(); - let mut inner = [0; Self::NUM_ELEMENTS]; - reader.fill(bytemuck::must_cast_slice_mut(inner.as_mut_slice())); - Self(inner) + let mut new = Self::identity(); + reader.fill(bytemuck::must_cast_slice_mut(new.0.as_mut_slice())); + new } /// Mixes `other` into `self` @@ -85,12 +91,8 @@ mod tests { }; impl LtHash { - const fn new_zeroed() -> Self { - Self([0; Self::NUM_ELEMENTS]) - } - fn new_random() -> Self { - let mut new = Self::new_zeroed(); + let mut new = Self::identity(); thread_rng().fill(&mut new.0); new } @@ -114,6 +116,14 @@ mod tests { impl Copy for LtHash {} + // Ensure that if you mix-in or mix-out with the identity, you get the original value + #[test] + fn test_identity() { + let a = LtHash::new_random(); + assert_eq!(a, a + LtHash::identity()); + assert_eq!(a, a - LtHash::identity()); + } + // Ensure that if you mix-in then mix-out a hash, you get the original value #[test] fn test_inverse() {