cryptoys 1.2.1

a cryptographic library filled with cryptographic toys(mostly historical ciphers)
Documentation
//! Cryptoys is a cryptographic library that contains cryptographic toys, like historical algorithms(rot13, playfair)
//! or hashing functions like md5(not yet).
//! <br>
//! <br>
//! The primary goal of this crate is not to make a fully functioning, save and secure cryptography library (others have done this already),
//! but to provide fun toys to play around with.
//! <br>
//! So please don't use this library as your primary source of encryption.
//!
//! ##### Features:
//! - historical ciphers
//!     - playfair
//!     - rot13
//!     - caesar
//!     - atbash
//!     - affine
//! - key encryption
//!     - otp

pub mod historical;
pub mod key;
mod utils;

/// Solves a Ciphtertext
pub trait Solve {
    fn solve(&self) -> String;
}