//! Cryptographic primitives layer.
//! This module provides foundational cryptographic functionality including
//! key generation, digital signatures, hashing, and various encoding schemes
//! required for the ACME protocol and certificate management.
//!
//! The architecture is designed to be modular, allowing for easy extension
//! of supported algorithms and encoding formats.
// Re-exports for convenient access to core cryptographic utilities
pub use ;
pub use ;
pub use ;
pub use ;
/// Initializes the cryptographic subsystem.
/// Currently a placeholder for any global crypto initialization (e.g., OpenSSL or ring).