Hello there!
This is a C program for the vigenere cipher. The program uses multiple files, using a make file. What this means is that there is a main file, where the main function is writen. The other functions are written in different files and the program entirely is compiled using the make file.
What is a make file? All thats required right now is that the make file makes the compilation easy.
What is a vigenere cipher?
Run the code and choose option 1 for the explaination
If you want to jump head-first and get started with Contributions, head over to
CONTRIBUTING.md
to get started!
- language: c
- tools: mingw
Here's How you can get the program running in your machines :
First, install mingw compiler for the mentioned website: https://sourceforge.net/projects/mingw/files/
and then add to path in environment variables
Now, run the following commands to run the code
- Open command prompt(cmd) and traverse to the directory where you have cloned this repo
- Type the given command in cmd to compile the code:
mingw32-make -f filename.mk
- To run the code type
a.out
ora.exe
Is this project beginner friendly? YES
Maintainers : karunakc , gmail
Vigenere Cipher
- Explaination
- Encryption (input from user)
- Decryption (user from user)
- Encryption (input from file)
- Decryption (input from file)