RustCrypto: RIPEMD
Pure Rust implementation of the RIPEMD cryptographic hash.
This crate implements only the modified 1996 versions, not the original one from 1992.
Note that RIPEMD-256 provides only the same security as RIPEMD-128, and RIPEMD-320 provides only the same security as RIPEMD-160.
Examples
use ;
use hex;
let mut hasher = new;
hasher.update;
let hash160 = hasher.finalize;
assert_eq!;
// Same example for RIPEMD-320
let mut hasher = new;
hasher.update;
let hash320 = hasher.finalize;
assert_eq!;
See the digest crate docs for additional examples.
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.