Vigenère Cipher
Description
This project implements a Vigenère cipher to demonstrate basic encryption and decryption using a keyword-based shifting approach.
Directory Structure
include/: Contains the header files.src/: Contains the source code files (main.candvigenere_cipher.c).obj/: Contains the compiled object files.build/: Contains the Makefile and the compiled binary.
How to Build
- Navigate to the
builddirectory. - Run
maketo compile the project.
How to Run
- After building, you will find an executable named
vigenere_cipherin thebuilddirectory. - Run it using
./vigenere_cipher.
How to Clean
- Run
make cleanin thebuilddirectory to remove all compiled files.