hel-random 0.5.2

Simple RNG with weak entropy source (alloc) and xoshiro256++ hashing
Documentation

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