522 B
522 B
Simple Substitution Cipher
Description
A simple substitution cipher replaces each letter in the plaintext with another letter from the alphabet, based on a predetermined key.
How to Build
- Navigate to the
builddirectory. - Run
maketo compile the project.
How to Run
- After building, you will find an executable named
substitution_cipherin thebuilddirectory. - Run it using
./substitution_cipher.
How to Clean
- Run
make cleanin thebuilddirectory to remove all compiled files.