rscrypto 0.1.0

Rust crypto with zero default deps: BLAKE3, Ed25519/X25519, hashes, MACs, KDFs, AEADs, and checksums with SIMD/ASM acceleration.
Documentation
//! Internal backend support for rscrypto.
//!
//! The public crate surface exposes platform detection and algorithm-level
//! introspection. This module holds internal caching and shared backend kernels
//! so algorithms can reuse implementation building blocks without creating
//! public-surface or feature-graph coupling.
#[cfg(any(feature = "ascon-hash", feature = "ascon-aead"))]
pub mod ascon;
#[cfg(any(
  feature = "crc16",
  feature = "crc24",
  feature = "crc32",
  feature = "crc64",
  feature = "argon2",
  feature = "sha2",
  all(feature = "sha3", any(test, feature = "diag")),
  all(
    any(feature = "blake2b", feature = "blake2s"),
    not(all(target_arch = "aarch64", target_os = "macos"))
  ),
  feature = "blake3",
  feature = "ascon-hash",
  feature = "xxh3",
  all(feature = "rapidhash", any(test, feature = "diag")),
  feature = "aes-gcm",
  feature = "aes-gcm-siv",
  feature = "chacha20poly1305",
  feature = "xchacha20poly1305"
))]
pub mod cache;
#[cfg(any(feature = "ed25519", feature = "x25519"))]
pub mod curve25519;