saucecontrol / Blake2Fast

Optimized BLAKE2 hashing implementations in C#
MIT License
94 stars 14 forks source link

Add BLAKE3 implementation #5

Open saucecontrol opened 3 years ago

saucecontrol commented 3 years ago

xoofx making me look bad over here

img

viktor-svub commented 3 years ago

Not exactly a fair comparison, is it -- as theirs is just a thin .NET wrapper over an unmanaged library -- which I'd rather avoid :)

saucecontrol commented 3 years ago

Now that we have access to SIMD intrinsics in .NET I consider everything fair 😄

But yeah, I'd rather have a managed implementation as well, and it will be fun to see if I can beat the Rust version on perf (at least up to AVX2).

egbakou commented 2 years ago

@saucecontrol You can find the BLAKE3 implemented here https://github.com/xoofx/Blake3.NET by @xoofx