Ciphers is a Rust library that provides implementations of many different classical ciphers.
Get started by looking at the documentation.
There are currently 16 different supported ciphers.
| Transposition | Monoalphabetic | Polyalphabetic | Polygraphic | Other | | ---------------------- | ------------------- | -------------- | ----------- | ------ | | Rail-fence | Simple Substitution | Vigenere | Playfair | ADFGX | | Columnar Transposition | Caesar | Beaufort | Four-Square | ADFGVX | | | Affine | Autokey | | | | | Polybius Square | Running Key | | | | | Atbash | Porta | | |
Simply put the following in your Cargo.toml.
toml
[dependencies]
ciphers = "0.1.0"
E.g. using the Vigenere cipher.
```rust use ciphers::{Cipher, Vigenere};
fn main() { let vigenere = Vigenere::new("examplekey");
// encipher
let ctext = vigenere.encipher("someexampletexthere").unwrap();
println!("ciphertext: {}", ctext);
// decipher
let ptext = vigenere.decipher(&ctext).unwrap();
println!("plaintext: {}", ptext);
} ```
sh
ciphertext: WLMQTIEWTJIQEJISIBI
plaintext: SOMEEXAMPLETEXTHERE
There are currently 6 different ciphers to be implemented.
| Transposition | Monoalphabetic | Polyalphabetic | Polygraphic | Other | | ------------- | -------------- | -------------- | ----------- | --------------------- | | | Rot13 | Gronsfeld | Hill | Bifid | | | | | | Trifid | | | | | | Straddle Checkerboard |