Function cipher_crypt::rot13::apply
source · Expand description
Encrypt or decrypt a message using the ROT13 substitute cipher.
Examples
Basic usage:
use cipher_crypt::ROT13;
let m = "I am my own inverse";
assert_eq!(m, ROT13::apply(&ROT13::apply(m)));