Caesar cipher capabilities for Rust.
Add this to your Cargo.toml
:
toml
[dependencies]
caesarlib = "0.2.0"
and this to your crate root:
```rust extern crate caesarlib;
use caesarlib::*; ```
```rust
// With custom base sequence // Can look like "ABC...Zabc...z"
customencipher(baseseq: &str, offset: u16, message: &str) -> String
customdecipher(baseseq: &str, offset: u16, message: &str) -> String
// With roman/latin characters // Looks like the example for custom base sequences
fn encipher(offset: u16, message: &str) -> String;
fn decipher(offset: u16, message: &str) -> String;
// Returns randomly-generated offset and enciphered text fn rdm_encipher(message: &str) -> (u16, String) ```
You can try the lib using the caesar-cli
tool:
```sh $ caesarlib --method encipher --offset 87 --text "Carolus Magnus" Result: lJaXUdb vJPWdb With Offset: 87
$ caesarlib --method decipher --offset 87 —text "lJaXUdb vJPWdb" Result: Carolus Magnus With Offset: 87
$ caesarlib --random --text "Carolus Magnus" Result: qOfcZig AOUbig With Offset: 51312 ```
This was inspired by my Caesar Cipher algorithm implentation in Swift used in my iOS application caesarlib