Module modes

Module modes 

Source
Expand description

Block cipher modes of operation

This module implements various modes of operation for block ciphers, including CBC, CTR, and GCM.

Re-exports§

pub use cbc::Cbc;
pub use ctr::Ctr;

Modules§

cbc
Cipher Block Chaining (CBC) mode implementation
ctr
Counter (CTR) mode with proper error propagation and secure memory handling