Algod 1.0.0

Many types of rust algorithms and data-structures
Documentation
mod another_rot13;
mod caesar;
mod morse_code;
mod polybius;
mod rot13;
mod sha256;
mod tea;
mod transposition;
mod vigenere;
mod xor;

pub use self::another_rot13::another_rot13;
pub use self::caesar::caesar;
pub use self::morse_code::{decode, encode};
pub use self::polybius::{decode_ascii, encode_ascii};
pub use self::rot13::rot13;
pub use self::sha256::sha256;
pub use self::tea::{tea_decrypt, tea_encrypt};
pub use self::transposition::transposition;
pub use self::vigenere::vigenere;
pub use self::xor::xor;