//! Optimized cryptographic implementations for QuDAG
//!
//! This module provides high-performance implementations of cryptographic
//! primitives with focus on:
//! - Reduced memory allocations
//! - Improved cache efficiency
//! - SIMD optimizations where applicable
//! - Constant-time security properties
use Arc;
use Lazy;
/// Global buffer pool for crypto operations
pub static CRYPTO_BUFFER_POOL: =
new;
/// Global key cache for frequently used keys
pub static KEY_CACHE: =
new;
pub use BufferPool;
pub use OptimizedMlKem768;
pub use ;