Function encrypt

Source
pub fn encrypt(message: &str) -> String
Expand description

Encrypts the given plaintext using the scream cypher.

See: https://xkcd.com/3054/

§Example

let ciphertext = scream_cipher::encrypt("This is a test.");

println!("Your message: \"{}\"", ciphertext);
/// Your message: "Āa̰ảã ảã a āáãā."