Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 494 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 494 Bytes

vigenere-cipher-toolkit

A simple C++ Vigenere cipher implementation with file handling and with methods for cracking the cipher

First, type an encription key on the /workspace/key.txt and type a message to encript on /workspace/input.txt

For simple compilation, all you gou've got to run is:

g++ .\modules\encript.cpp .\modules\decript.cpp .\modules\auxiliary.cpp .\main.cpp

or even:

g++ .cpp modules/.cpp

All relevant files will be deploied on /workspace directory.