#struct #near-protocol #blockchain

near-stable-hasher

near-stable-hasher is a library that is essentially a wrapper around, now deprecated, std::hash::SipHasher

19 releases (11 breaking)

0.29.1 Mar 6, 2025
0.29.0-rc.2 Feb 18, 2025
0.28.0 Dec 12, 2024
0.27.0 Nov 4, 2024
0.1.0 Oct 4, 2021

#19 in #near-protocol

Download history 152/week @ 2024-12-10 7/week @ 2024-12-17 107/week @ 2025-02-18 8/week @ 2025-02-25 258/week @ 2025-03-04 18/week @ 2025-03-11 1/week @ 2025-03-18

288 downloads per month
Used in near-network

MIT/Apache

7KB

near-stable-hasher

near-stable-hasher is a library that is essentially a wrapper around, now deprecated, std::hash::SipHasher. Its purpose is to provide a stable hash function, which doesn't change depending on rust_version, architecture, platform, time, etc.

In addition, note that SipHasher is deprecated since Rust 1.13.0. Eventually SipHasher will be removed from Rust. We need to ensure, nothing breaks during this transition period.

Structs

This crate provides only one struct. See StableHasher.

Example:

fn test_stable_hasher() {
  let mut sh = StableHasher::new();

  sh.write(&[1, 2, 3, 4, 5]);
  let finish = sh.finish();
  assert_eq!(finish, 12661990674860217757)
}

No runtime deps