//! RustCrypto-based cryptographic operations.
//!
//! This module uses pure Rust implementations from the `RustCrypto` project.
use crate::;
/// AEAD implementation using `RustCrypto` libraries.
///
/// Supports both AES-GCM and AES-CTR cipher suites.
/// Key derivation implementation using `RustCrypto` libraries.
;