libcrux-sha3 0.0.2-alpha.2

Libcrux SHA-3 implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! SIMD implementations of SHA3
//!
//! Runtime feature detection must be performed before calling these functions.
//!
//! If the caller does not perform feature detection, the top level functions
//! must be used.

#[cfg(feature = "simd128")]
pub(crate) mod arm64;
#[cfg(feature = "simd256")]
pub(crate) mod avx2;