entro-shift 1.1.0

Entro Shift is a 32-bit, pseudo-random number generator algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate entro_shift;

use entro_shift::entro_shift::entro_shift;

fn main() {
    let mut entropy = entro_shift(1111111111);

    println!("{}", entropy);
    entropy = entro_shift(entropy);
    println!("{}", entropy);
    entropy = entro_shift(entropy);
    println!("{}", entropy);
}