cipher_identifier 0.2.0

A tool for identifying classical ciphers based on statistical analysis
Documentation
1
2
3
4
5
6
7
fn main() {
    // Run the cipher analyzer CLI
    if let Err(e) = cipher_identifier::cipher_analyzer::main() {
        eprintln!("Error: {}", e);
        std::process::exit(1);
    }
}