dcrypt-algorithms 1.2.3

Cryptographic primitives for the dcrypt library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Block cipher modes of operation
//!
//! This module implements various modes of operation for block ciphers,
//! including CBC, CTR, and GCM.

pub mod cbc;
pub mod ctr;

// Re-exports
pub use cbc::Cbc;
pub use ctr::Ctr;