#random #no-std #no-alloc

no-std chacha8rand

Reproducible, robust and (last but not least) fast pseudorandomness

2 releases

0.1.1 Mar 23, 2025
0.1.0 Oct 14, 2024

#1262 in Algorithms

Download history 2/week @ 2024-12-10 6/week @ 2025-02-04 1/week @ 2025-02-25 2/week @ 2025-03-04 96/week @ 2025-03-18 23/week @ 2025-03-25

122 downloads per month

MIT/Apache

90KB
1K SLoC

ChaCha8Rand Implementation in Rust

Reproducible, robust and (last but not least) fast pseudorandomness.

This crate implements the chacha8rand specification, originally designed for Go's math/rand/v2 package. The language-independent specification and test vector helps with long-term reproducibility and interoperability. Building on the ChaCha8 stream cipher ensures high statistical quality and removes entire classes of "you're holding it wrong"-style problems that lead to sub-par output. It's also carefully designed and implemented (using SIMD instructions when available) to be so fast that it shouldn't ever be a bottleneck. However, it should not be used for cryptography.

See the documentation for more details.

Dual-licensed under Apache 2.0 or MIT at your option.

Dependencies