rscrypto 0.1.1

Pure Rust cryptography, hardware-accelerated: BLAKE3, SHA-2/3, AES-GCM, ChaCha20-Poly1305, Ed25519, X25519, HMAC, HKDF, Argon2, CRC. no_std, WASM, ten CPU architectures.
Documentation
//! Blake2b kernel dispatch with `OnceCache` caching.
//!
//! # Non-x86 SIMD policy
//!
//! The AArch64 NEON, POWER VSX, and s390x vector kernels are correct, but
//! single-block SIMD loses to the portable scalar path in CI. The 2026-04-27
//! Linux bench run confirmed AArch64 NEON loses to portable on Graviton3/4, so
//! do not select those kernels in production dispatch.
//!
//! Regaining dominance on those platforms requires multi-block kernels
//! (Blake3-style 2-way or 4-way), not more single-block shuffle tuning.

use super::kernels::{Blake2bKernelId, CompressBlocksFn, CompressFn, compress_blocks_fn, compress_fn};
define_blake2_dispatch! {
  kernel_id: Blake2bKernelId,
  compress_fn_ty: CompressFn,
  compress_blocks_fn_ty: CompressBlocksFn,
  portable_kernel: Blake2bKernelId::Portable,
  compress_fn: compress_fn,
  compress_blocks_fn: compress_blocks_fn,
  required_caps: super::kernels::required_caps,
  candidates: [
    #[cfg(target_arch = "x86_64")]
    Blake2bKernelId::X86Avx512vl,
    #[cfg(target_arch = "x86_64")]
    Blake2bKernelId::X86Avx2,
    #[cfg(target_arch = "riscv64")]
    Blake2bKernelId::Riscv64V,
    #[cfg(target_arch = "wasm32")]
    Blake2bKernelId::WasmSimd128,
  ],
}