1
2
3
4
5
6
7
8
9
10
pub mod magma;

// re-export the magma core
pub use magma::Magma;

// re-export the CipherOperation
pub use magma::cipher_operation::CipherOperation;

// re-export the cipher modes
pub use magma::cipher_mode::{CipherMode, ecb, ctr, ctr_acpkm, ofb, cbc, cfb, mac};