//! Cryptographic operations — ciphers, hashes, and key-derivation functions.
//!
//! Crypto ops may be Category C intrinsics when they rely on hardware
//! acceleration, or Category A compositions for software-only paths.
/// ChaCha20 block function (stream-cipher keystream generation).
pub mod chacha20_block;