1//! Block cipher modes of operation 2//! 3//! This module implements various modes of operation for block ciphers, 4//! including CBC, CTR, and GCM. 5 6pub mod cbc; 7pub mod ctr; 8 9// Re-exports 10pub use cbc::Cbc; 11pub use ctr::Ctr;