#blake2s #parallel-processing #blake2sp

no-std blake2s_simd

a pure Rust BLAKE2s implementation with dynamic SIMD

14 releases (3 stable)

1.0.2 Sep 10, 2023
1.0.1 Feb 9, 2023
1.0.0 Nov 19, 2021
0.5.11 Nov 2, 2020
0.5.5 Jul 22, 2019

#18 in Concurrency

Download history 64325/week @ 2024-01-05 68729/week @ 2024-01-12 78333/week @ 2024-01-19 86527/week @ 2024-01-26 86855/week @ 2024-02-02 91908/week @ 2024-02-09 89867/week @ 2024-02-16 87514/week @ 2024-02-23 84859/week @ 2024-03-01 76895/week @ 2024-03-08 77326/week @ 2024-03-15 79740/week @ 2024-03-22 76499/week @ 2024-03-29 77006/week @ 2024-04-05 80386/week @ 2024-04-12 64889/week @ 2024-04-19

312,266 downloads per month
Used in 221 crates (28 directly)

MIT license

150KB
3K SLoC

blake2s_simd GitHub crates.io Actions Status

An implementation of the BLAKE2s and BLAKE2sp hash functions. See also blake2b_simd.

This crate includes:

  • 100% stable Rust.
  • SIMD implementations based on Samuel Neves' blake2-avx2. These are very fast. For benchmarks, see the Performance section of the README.
  • Portable, safe implementations for other platforms.
  • Dynamic CPU feature detection. Binaries include multiple implementations by default and choose the fastest one the processor supports at runtime.
  • All the features from the the BLAKE2 spec, like adjustable length, keying, and associated data for tree hashing.
  • no_std support. The std Cargo feature is on by default, for CPU feature detection and for implementing std::io::Write.
  • Support for computing multiple BLAKE2s hashes in parallel, matching the efficiency of BLAKE2sp. See the many module.

Example

use blake2s_simd::{blake2s, Params};

let expected = "08d6cad88075de8f192db097573d0e829411cd91eb6ec65e8fc16c017edfdb74";
let hash = blake2s(b"foo");
assert_eq!(expected, &hash.to_hex());

let hash = Params::new()
    .hash_length(16)
    .key(b"Squeamish Ossifrage")
    .personal(b"Shaftoe")
    .to_state()
    .update(b"foo")
    .update(b"bar")
    .update(b"baz")
    .finalize();
assert_eq!("28325512782cbf5019424fa65da9a6c7", &hash.to_hex());

Dependencies

~97KB