souphash

Crates.iosouphash
lib.rssouphash
version0.1.0
created_at2025-09-05 05:15:44.806077+00
updated_at2025-09-05 05:15:44.806077+00
descriptionSoupHash: an order-indipendent hash function, based on SipHash
homepage
repositoryhttps://github.com/andreacorbellini/souphash-rs
max_upload_size
id1825102
size55,314
Andrea Corbellini (andreacorbellini)

documentation

README

SoupHash: an order-indipendent hash function

Crate Documentation License

SoupHash is a non-cryptographic hash function whose output does not depend on the order of the elements that are fed into it. It is ideal for:

  • hashing of unordered collections (like hash sets and hash maps);
  • hashing large collections in parallel, using multiple threads or processes, without locks or any form of synchronization.

SoupHash is based on the popular SipHash hashing algorithm. This repository hosts the [Rust] implementation of SoupHash. Check the [crate documentation] to learn more!

Commit count: 2

cargo fmt