1 2 3 4 5 6 7 8 9
//! A cryptographic tomb of ciphers forgotten by time. //! //! There's a reason these archaic methods are no longer used - its because they are extremely //!easy to crack! Intended for learning purposes only, these ciphers should not be used to encrypt //!data of any real value. mod common; pub mod caesar; pub mod vigenere; pub mod rot13;