An implementation of the BLAKE2b hash with:
no_std
support. std
is on by default, for feature detection and std::io::Write
.The AVX2 implementation in this crate is ported from the C implementation in libsodium. That implementation was originally written by Samuel Neves and integrated into libsodium by Frank Denis. All credit for performance goes to those authors.
The benchmark_gig
binary in this crate allocates a gigabyte (10⁹) 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:
gcc -O3 -lsodium benches/bench_libsodium.c
(via the
helper script benches/bench_libsodium.sh
)cargo +nightly run --release --bin benchmark_gig
table
╭────────────┬────────────╮
│ portable │ AVX2 │
╭──────────────┼────────────┼────────────┤
│ blake2b_simd │ 0.771 GB/s │ 1.005 GB/s │
│ libsodium │ 0.743 GB/s │ 0.939 GB/s │
╰──────────────┴────────────┴────────────╯
rust
let mut params = blake2b_simd::Params::default();
params.hash_length(16);
params.key(b"The Magic Words are Squeamish Ossifrage");
params.personal(b"L. P. Waterhouse");
let mut state = blake2b_simd::State::with_params(¶ms);
state.update(b"foo");
state.update(b"bar");
state.update(b"baz");
let hash = state.finalize();
assert_eq!("ee8ff4e9be887297cf79348dc35dab56", &hash.hex());