caesarlib 0.1.1

A Caesar-Cipher library for Rust.
Documentation

caesarlib

Caesar cipher capabilities for Rust. Current Version Build Status

Usage

Add this to your Cargo.toml:

[dependencies]
caesarlib = "0.1.1"

and this to your crate root:

extern crate caesarlib;

use caesarlib::*;

Methods

fn encipher(offset: i32, message: &str) -> String;

fn decipher(offset: i32, message: &str) -> String;

Author

Background

This was inspired by my Caesar Cipher algorithm implentation in Swift used in my iOS application CaesarCy