[][src]Crate ripemd320

An implementation of the RIPEMD-320 cryptographic hash.

Usage

use ripemd320::{Ripemd320, Digest};

// create a RIPEMD-320 hasher instance
let mut hasher = Ripemd320::new();

// process input message
hasher.input(b"Hello world!");

// acquire hash digest in the form of GenericArray,
// which in this case is equivalent to [u8; 40]
let expected = hex!("f1c1c231d301abcf2d7daae0269ff3e7bc68e623ad723aa068d316b056d26b7d1bb6f0cc0f28336d");
let result = hasher.result();
assert_eq!(&result[..], &expected[..]);

Also see RustCrypto/hashes readme.

Re-exports

pub extern crate digest;

Structs

Ripemd320

Structure representing the state of a ripemd320 computation

Traits

Digest

The Digest trait specifies an interface common for digest functions.