This is a command line application that encodes a string using the Viginère cipher and stores the result in the form of a hex-encoded string. It creates two files: one for the plaintext and another for the ciphertext. Instead of adding the "value" of the letters in the key, it performs XOR
operation.
- Navigate to the location where the repository is to be cloned using the terminal
- Clone this repository by typing
git clone https://github.com/amartyanil/viginere_encoder
- Provided you have gcc installed in your system, create an executable file using the command
gcc -o <filename> Main.c PlaintextInput.c Encoder.c
in the same location - Execute the file by using the command
./<filename>