Function decrypt

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

Decrypts the given cyphertext using the scream cypher.

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

§Example

let plaintext = scream_cipher::decrypt("Āa̰ảã ảã a āáãā.");

println!("Your message: \"{}\"", plaintext);
/// Your message: "This is a test."