hel-random

Crates.iohel-random
lib.rshel-random
version0.5.2
created_at2023-07-01 08:07:56.503352+00
updated_at2025-01-16 16:00:18.997964+00
descriptionSimple RNG with weak entropy source (alloc) and xoshiro256++ hashing
homepage
repositoryhttps://github.com/Hellaeh/random.git
max_upload_size
id905354
size46,189
Hellaeh (Hellaeh)

documentation

https://docs.rs/hel-random

README

hel-random

Simple RNG with weak source of entropy(alloc and sub-μs) and xoshiro256++ hashing

Examples

use hel_random::u64;

let a: u64 = u64();
let b: u64 = u64();

assert!(a != b);

How to install

cargo add hel-random
Commit count: 15

cargo fmt