scream_cypher
In the SCREAM CYPHER, messages consist of all As with different letters distinguished using diacritics. This is a tool that provides both a CLI tool and a library to encrypt and decrypt text using the scream cypher.
Acknowledgements
This cypher originated from XKCD. Thank you, Randall Munroe, for always bringing such beautiful things into this world.
Command line installation and usage
Install scream_cypher with Cargo:
You can then use the scream command to encrypt and decrypt messages:
# Āa̰ảã ảã a āáãā.
# This is a test.
Library installation and usage
Add scream_cypher to your project:
You can then use scream_cypher::encrypt and scream_cypher::encrypt to
encrypt and decrypt messages:
let ciphertext = encrypt;
println!;
// Your message: "Āa̰ảã ảã a āáãā."
let plaintext = decrypt;
println!;
// Your message: "This is a test."
License
This project is dual licensed under Apache 2.0 or MIT.