cienli 0.3.1

CiEnLi is a library of historical ciphers implemented in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! An Implementation of historical ciphers.
//!
//! **Note:** If you only need to use one or a couple of ciphers, you can disable default features and specify those features you need.
//! For example, if you only need to use caesar cipher in your crate, you can have this in your Cargo.toml:
//!
//! ```toml
//! [dependencies]
//! cienli = { version = "0.3.1", default-features = false, features = ["caesar"]}
//! ```
//!
pub mod ciphers;
pub mod common;