checksums 0.9.1

Tool for making/verifying checksums of directory trees
Documentation
1
2
3
4
5
6
7
8
9
10
use self::super::hash_string;
use blake::Blake;


hash_func_write!(Blake::new(512).unwrap(),
                 |mut blake: Blake| {
                     let mut result = [0; 64];
                     blake.finalise(&mut result);
                     hash_string(&result)
                 });