1 unstable release

0.1.0 Jul 11, 2024

#87 in Programming languages

Download history 7746/week @ 2024-07-23 8169/week @ 2024-07-30 8045/week @ 2024-08-06 7765/week @ 2024-08-13 8151/week @ 2024-08-20 7685/week @ 2024-08-27 8194/week @ 2024-09-03 8448/week @ 2024-09-10 8611/week @ 2024-09-17 9046/week @ 2024-09-24 8257/week @ 2024-10-01 9360/week @ 2024-10-08 9284/week @ 2024-10-15 9218/week @ 2024-10-22 10235/week @ 2024-10-29 10128/week @ 2024-11-05

40,262 downloads per month

Apache-2.0 OR MIT

52KB
871 lines

rustc-stable-hash

crates.io Documentation

A stable hashing algorithm used by rustc: cross-platform, deterministic, not secure.

This crate provides facilities with the StableHasher structure to create stable hashers over unstable hashers by abstracting over them the handling of endian-ness and the target usize/isize bit size difference.

Currently, this crate provides it's own implementation of 128-bit SipHasher: SipHasher128; with StableSipHasher128 for the stable variant.

Usage

use rustc_stable_hash::hashers::{StableSipHasher128, SipHasher128Hash};
use rustc_stable_hash::FromStableHash;
use std::hash::Hasher;

struct Hash128([u64; 2]);
impl FromStableHash for Hash128 {
    type Hash = SipHasher128Hash;

    fn from(SipHasher128Hash(hash): SipHasher128Hash) -> Hash128 {
        Hash128(hash)
    }
}

let mut hasher = StableSipHasher128::new();
hasher.write_usize(0xFA);

let hash: Hash128 = hasher.finish();

No runtime deps

Features