Fun algorithm allowing to encrypt any file into a string of emojis.
- clone this repo
- run make command
make
Encryption:
🐯 | ./emojicrypt -e -i example.txt -o example.enc
🔑 Enter your key:
Decryption:
🐯 | ./emojicrypt -d -i example.enc -o example_out.txt
🔑 Enter your key:
Available flags:
-d decryption mode
-e encryption mode
-h this help page
-i file input file
-o file output file
- Mixing the columns of the block
- CBC mode support
- Automatic output filename if not provided