md6 2.0.3

Implementation of the MD6 hash function for Rust via FFI
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate cc;


fn main() {
    cc::Build::new()
        .file("ext/md6/md6_compress.c")
        .file("ext/md6/md6_compression_hook.c")
        .file("ext/md6/md6_mode.c")
        .file("ext/md6/md6_nist.c")
        .compile("libmd6.a");
}