mx3-rs is a Rust library implementing the mx3 algorithm which provides a bit mixer, pseudo-random number generator, and hash function. This crate implements versions 1, 2, and 3.
The crate is not intended for cryptographically secure purposes.
rust
let mixed_bits = mx3::v3::mix(123456789);
println!("{:x}", mixed_bits);
```rust use rand::prelude::*;
let mut rng = mx3::v3::Mx3Rng::new(123456789);
let randomnumber = rng.gen::
rust
let hash_digest = mx3::v3::hash(b"Hello world!", 123456789);
println!("{:x}", hash_digest);
If you have problems or bug fixes, please use the GitHub Issues and Pull Request sections.
Copyright (c) 2021-2022 Christopher Foo. Licensed under the MIT License.