An implementation of base32. Built following the spec and test cases from https://base32h.github.io/
cargo add base32h
``` use base32h::{encodebinarytostring, encodetostring, decodestringtobinary, decode_string};
asserteq!(encodetostring(1099511627775).unwrap(), "ZZZZZZZZ".toowned()); asserteq!(decodestring("ZZZZZZZZ"), Some(1099511627775));
asserteq!(encodebinarytostring(&[255, 255, 255, 255, 255, 255]), "0000007ZZZZZZZZZ".toowned()); asserteq!(decodestringto_binary("zZzZzZzZ"), Vec::from([255, 255, 255, 255, 255])); ```
Run:
cargo test
Run:
cargo bench
Install cargo fuzz:
cargo install cargo-fuzz
Run one of the fuzzing targets (Must be on nightly):
* cargo fuzz run encode_binary_to_string -j 8
// 8 is the number of threads to use
* cargo fuzz run decode_string_to_binary -j 8
* cargo fuzz run encode_to_string -j 8
* cargo fuzz run decode_string -j 8