RustCrypto: Streebog
Pure Rust implementation of the Streebog cryptographic hash function defined in GOST R 34.11-2012.
Examples
use ;
use hex;
let mut hasher = new;
hasher.update;
let hash256 = hasher.finalize;
assert_eq!;
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash256 = encode_string;
assert_eq!;
// Same example for Streebog-512
let mut hasher = new;
hasher.update;
let hash512 = hasher.finalize;
assert_eq!;
Also, see the examples section in the RustCrypto/hashes readme.
License
The crate is licensed under either of:
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.