blake2b_simd Build Status docs.rs

RepoDocsCrate

An implementation of the BLAKE2b hash with:

Example

```rust use blake2b_simd::{blake2b, Params};

let expected = "ca002330e69d3e6b84a46a56a6533fd79d51d97a3bb7cad6c2ff43b354185d6d\ c1e723fb3db4ae0737e120378424c714bb982d9dc5bbd7a0ab318240ddd18f8d"; let hash = blake2b(b"foo"); asserteq!(expected, &hash.tohex());

let hash = Params::new() .hashlength(16) .key(b"The Magic Words are Squeamish Ossifrage") .personal(b"L. P. Waterhouse") .tostate() .update(b"foo") .update(b"bar") .update(b"baz") .finalize(); asserteq!("ee8ff4e9be887297cf79348dc35dab56", &hash.tohex()); ```

An example using the included b2sum command line utility:

bash $ cd b2sum $ cargo build --release Finished release [optimized] target(s) in 0.04s $ echo hi | ./target/release/b2sum --length 256 de9543b2ae1b2b87434a730727db17f5ac8b8c020b84a5cb8c5fbcc1423443ba -

Performance

The AVX2 implementation in this crate is a port of [Samuel Neves' implementation], which is also [included in libsodium]. Most of the credit for performance goes to him. To run small benchmarks yourself, first install OpenSSL and libsodium on your machine, then:

```sh cd benches/cargo_bench

Use --no-default-features if you're missing OpenSSL or libsodium.

cargo +nightly bench ```

The benches/benchmark_gig sub-crate allocates a 1 GB array and repeatedly hashes it to measure throughput. A similar C program, benches/bench_libsodium.c, does the same thing using libsodium's implementation of BLAKE2b. Here are the results from my laptop:

table ╭───────────────────────┬────────────╮ │ blake2b_simd BLAKE2bp │ 2.069 GB/s │ │ blake2b_simd update4 │ 2.057 GB/s │ │ blake2b_simd AVX2 │ 1.005 GB/s │ │ libsodium AVX2 │ 0.939 GB/s │ │ blake2b_simd portable │ 0.771 GB/s │ │ libsodium portable │ 0.743 GB/s │ ╰───────────────────────┴────────────╯

The benches/bench_b2sum.py script benchmarks b2sum against several Coreutils hashes, on a 1 GB file of random data. Here are the results from my laptop:

table ╭───────────────────────────────┬────────────╮ │ blake2b_simd b2sum --blake2bp │ 1.423 GB/s │ │ blake2b_simd b2sum │ 0.810 GB/s │ │ coreutils sha1sum │ 0.802 GB/s │ │ coreutils b2sum │ 0.660 GB/s │ │ coreutils md5sum │ 0.600 GB/s │ │ coreutils sha512sum │ 0.593 GB/s │ ╰───────────────────────────────┴────────────╯

The benches/count_cycles sub-crate (cargo +nightly run --release) measures a long message throughput of 1.8 cycles per byte for BLAKE2b, and 0.9 cycles per byte for BLAKE2bp and [update4].