//! OpenSSL-based cryptographic operations.
//!
//! This module uses unsafe code for in-place encryption/decryption operations.
use crate::;
/// AEAD implementation using the OpenSSL library.
///
/// Supports both AES-GCM and AES-CTR cipher suites.
/// Key derivation implementation using the OpenSSL library.
;