cipher-salad 0.2.0

Implementations of classic ciphers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod atbash;
mod caesar;
mod vigenere;

pub use atbash::Atbash;
pub use caesar::Caesar;
pub use vigenere::{Vigenere, VigenereError};

#[derive(Clone, Copy, Debug)]
enum CipherOperation {
    Encrypt,
    Decrypt,
}