highway 1.3.0

Native Rust port of Google's HighwayHash, which makes use of SIMD instructions for a fast and strong hash function
Documentation
1
2
3
4
5
6
7
8
9
#[macro_use]
mod macros;
mod avx;
mod sse;
mod v2x64u;
mod v4x64u;

pub use avx::AvxHash;
pub use sse::SseHash;