1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//!
//! Module containing structs for generalizing cipher algorithms, so that individual
//! ciphers are only aware of the requirements of the cipher alphabet, such as the
//! number of letters needed.
//!

mod lang_alphabet;
mod language;

pub use lang_alphabet::LangAlphabet;
pub use language::Language;
pub use language::ScoreSize;