caesercipher 1.0.1

Simple caeser cipher implemented in rust
Documentation
1
2
3
4
/// this module contains a function for decrypt a string with caesercipher
pub mod decrypt;
/// this module contains a function for encrypting a string with caesercipher
pub mod encrypt;