Skip to content

Áâa̡ȃa̦a̯ā aâa̱ a̱áa̡ȃa̦a̯ā ǎáããaa̋áã äãảâa̋ āa̰á ÃA̡ȂÁAǍ A̡A̦A̯A̰ÁȂ!

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

icorbrey/scream_cypher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scream_cypher

Crates.io Version Crates.io Size docs.rs GitHub Sponsors

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:

cargo install scream_cypher

You can then use the scream command to encrypt and decrypt messages:

scream encrypt "This is a test."
# Āa̰ảã ảã a āáãā.

scream decrypt "Āa̰ảã ảã a āáãā."
# This is a test.

Library installation and usage

Add scream_cypher to your project:

cargo add scream_cypher

You can then use scream_cypher::encrypt and scream_cypher::encrypt to encrypt and decrypt messages:

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

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

let plaintext = scream_cipher::decrypt(cyphertext);

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

License

This project is dual licensed under Apache 2.0 or MIT.

About

Áâa̡ȃa̦a̯ā aâa̱ a̱áa̡ȃa̦a̯ā ǎáããaa̋áã äãảâa̋ āa̰á ÃA̡ȂÁAǍ A̡A̦A̯A̰ÁȂ!

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Languages