Crates.io | ripemd128 |
lib.rs | ripemd128 |
version | 0.1.2 |
source | src |
created_at | 2019-02-19 11:31:55.399882 |
updated_at | 2019-02-19 13:34:51.957532 |
description | RIPEMD-128 hash function |
homepage | |
repository | https://github.com/mtio/ripemd128 |
max_upload_size | |
id | 115739 |
size | 34,196 |
A pure rust implementation of the RIPEMD-128 cryptographic hash based on RustCrypto/hashes ripemd160.
use ripemd128::{Ripemd128, Digest};
// create a RIPEMD-128 hasher instance
let mut hasher = Ripemd128::new();
// process input message
hasher.input(b"abc");
// acquire hash digest in the form of GenericArray,
// which in this case is equivalent to [u8; 16]
let result = hasher.result();
// assert_eq!(result[..], hex!("c14a12199c66e4ba84636b0f69144c77"));
Also see RustCrypto/hashes readme.