hel-random 0.1.1

Simple RNG with weak entropy source (alloc) and xoshiro256++ hashing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# hel-random


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

## Examples


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

assert!(a != b);
```

## How to install


```
cargo add hel-random
```