2 releases

Uses old Rust 2015

0.1.1 May 3, 2015
0.1.0 May 3, 2015

#7 in #encodes

Download history 12/week @ 2024-02-19 28/week @ 2024-02-26 15/week @ 2024-03-04 22/week @ 2024-03-11 25/week @ 2024-03-18 9/week @ 2024-03-25

72 downloads per month
Used in macro-ob

MIT license

2KB

ROT13

A simple ROT13 encryption function. Can be applied on encrypted code again to reveal the plain text.

ROT13 works by shifting every character in the alphabet by 13 elements. This implementation maintains upper/lower cases and ignores non-[A-Za-z] characters, thus is safe to use on any string.

Takes a &str and returns a String.

This crate was created as an exercise for me to learn Rust, but it's tested and fully working (as far as I can tell), so go for it.

Example

extern crate rot13;

#[cfg(not(test))]
fn main() {
    println!("{}", rot13::rot13("Hello World!"));
}

No runtime deps