Classic Crypto

Build Status

Implementations of numerous classical cryptographic algorithms in rust, with a focus on configurable support for any language/charset. Currently only 26 letter alphabets are fully supported, but this should change in later releases.


Usage

Add this line to your Cargo.toml

```toml classic_crypto = "0.1.0"

```

Example

```rust use classic_crypto::{lang::Language, Affine, Asymmetric, Keyed};

fn main() { let contents = std::fs::readtostring("examples/data/english.json") .expect("Something went wrong reading the file"); let language: Language = serdejson::fromstr(&contents).unwrap();

let mut cipher = Affine::new(&language);
cipher.randomize(&language, &mut rand::thread_rng());

let plaintext = "Some plaintext";
let ciphertext = cipher.encrypt(&language, plaintext);

println!("{}", ciphertext);

} ```


Supported Ciphers

Electromechanical

Monoalphabetic

Polyalphabetic