| Crates.io | caesarcy |
| lib.rs | caesarcy |
| version | 0.1.1 |
| created_at | 2017-03-19 01:12:14.518629+00 |
| updated_at | 2017-03-19 01:34:44.571482+00 |
| description | A Caesar-Cipher library for Rust. |
| homepage | |
| repository | https://github.com/luki/caesarcy.rs |
| max_upload_size | |
| id | 9033 |
| size | 9,982 |
Caesar cipher capabilities for Rust.
Add this to your Cargo.toml:
[dependencies]
caesarcy = "0.1.0"
and this to your crate root:
extern crate caesarcy;
use caesarcy::*;
fn encipher(offset: i32, message: &str) -> String;
fn decipher(offset: i32, message: &str) -> String;
This was inspired by my Caesar Cipher algorithm implentation in Swift used in my iOS application CaesarCy