entro_shift/
lib.rs

1pub mod entro_shift;
2
3#[cfg(test)]
4mod test {
5    use entro_shift::entro_shift;
6
7    #[test]
8    fn test_entro_shift() {
9        let mut entropy = entro_shift(1111111111);
10
11        entropy = entro_shift(entropy);
12        entropy = entro_shift(entropy);
13        assert_eq!(3977031902, entropy);
14    }
15}