checksums 0.9.1

Tool for making/verifying checksums of directory trees
Documentation
1
2
3
4
5
6
use self::super::hash_string;
use whirlpool::{Whirlpool, Digest};

hash_func!(Whirlpool::new(),
           |whirlpool: &mut Whirlpool, buffer: &[u8]| whirlpool.update(buffer),
           |whirlpool: Whirlpool| hash_string(&whirlpool.finalize()));