caesarcy 0.1.1

A Caesar-Cipher library for Rust.
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 10.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.1 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • suesslin/caesarlib-rs
    2 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • luki

caesarcy

Caesar cipher capabilities for Rust. Current Version

Usage

Add this to your Cargo.toml:

[dependencies]
caesarcy = "0.1.0"

and this to your crate root:

extern crate caesarcy;

use caesarcy::*;

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