blake2_c 0.1.1

a safe wrapper for the official BLAKE2 C implementation
docs.rs failed to build blake2_c-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: blake2_c-0.3.3

blake2_c.rs Travis build AppVeyor build crates.io docs.rs

blake2_c is a safe Rust wrapper around the C implementation of BLAKE2. It exposes all the parameters that Blake2 supports, like personalization and tree hashing.

By default it builds the ref implementation, but if you use --features native it will build the sse implementation. This gives about an 8% speedup on my machine, but the resulting binary is probably not portable.

Originally based on libb2-sys by @cmr and @cesarb and blake2-rfc by @cesarb.