1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
mod alphabet; pub use alphabet::Alphabet; mod integer; pub use integer::Integer; mod float; pub use float::Float; mod error; pub use error::AnoError; #[cfg(test)] mod tests; /// The Key Length: 256 bit = 32 bytes for AES 256 pub const KEY_LENGTH: usize = 32;