//! Key generation, parsing, and management functionality.
//!
//! This module provides comprehensive key management capabilities including
//! RSA key pair generation, key parsing from various formats, and secure
//! key storage operations.
// Re-export main types for backward compatibility
pub use ;
// Re-export new modular types
pub use KeyPair as KeyPairNew;
pub use PrivateKey as PrivateKeyNew;
pub use PublicKey as PublicKeyNew;