blake 2.0.1

Implementation of the BLAKE hash function for Rust via FFI
Documentation
1
2
3
4
5
6
7
8
extern crate gcc;


fn main() {
    gcc::Build::new()
        .file("ext/blake/blake_ref.c")
        .compile("libblake.a");
}