[][src]Crate ripemd128

An implementation of the RIPEMD-128 cryptographic hash.

Usage

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.

Re-exports

pub extern crate digest;

Structs

Ripemd128

Structure representing the state of a Ripemd128 computation

Traits

Digest

The Digest trait specifies an interface common for digest functions.