GitHunt
SU

sunshowers/rand-seeder

A universal seeder based on SipHash

rand_seeder

Build Status
Latest version
Documentation
Minimum rustc version
License

A universal seeder based on SipHash.

This crate is designed for use with the rand crates, allowing any RNG
supporting rand_core::SeedableRng to be seeded from any hashable value.
It provides the following:

  • SipHasher is a portable implementation of SipHash-2-4. According to the
    authors, SipHash is a secure, fast and simple keyed hash function.
  • SipRng is a PRNG based on the SipHash state and mixing operations.
    It is statistically high-quality, passing practrand tests to at least 4 TiB.
  • SipHasher::into_rng() transitions a SipHasher into a SipRng, maintaining
    the full 256 bits of state. (This might break the hasher's security.)
  • Seeder is a convenience wrapper around the above (see example).

Seeding is designed to be fast, robust, flexible and portable. This library is
intended for use in simulations and games, allowing e.g. any keyword to
reproduce a simulation or procedurally generated world.

This library is not intended for cryptographic applications, and definitely
not for password hashing.

Example:

use rand_core::RngCore;         // for next_u32
use rand_pcg::Pcg64;            // or whatever you like
use rand_seeder::Seeder;

let mut rng: Pcg64 = Seeder::from("stripy zebra").make_rng();
println!("First value: {}", rng.next_u32());

Changelog

Rust version requirements

Requires rustc 1.32 or greater for the .to_le_bytes() method and for
rand_core 0.5 compatibility.

License

rand_seeder is distributed under the terms of both the MIT license and the
Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Languages

Rust100.0%

Contributors

Apache License 2.0
Created July 30, 2024
Updated June 4, 2025
sunshowers/rand-seeder | GitHunt