#deprecated #stable #now #wrapper #hash #near #sip-hasher

near-stable-hasher

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

12 releases (6 breaking)

new 0.22.0 May 17, 2024
0.21.2 Mar 14, 2024
0.20.1 Jan 23, 2024
0.19.0 Dec 21, 2023
0.1.0 Oct 4, 2021

#493 in Magic Beans

Download history 98/week @ 2024-02-12 2/week @ 2024-02-19 16/week @ 2024-02-26 134/week @ 2024-03-04 267/week @ 2024-03-11 15/week @ 2024-03-18 71/week @ 2024-04-01 123/week @ 2024-05-13

123 downloads per month
Used in near-network

MIT/Apache

6KB

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