A program that makes a reasonable attempt at cracking a monoalphabetic Caesar cipher and a polyalphabetic Vigenere cipher.
The following commands are all that's needed to build and run the program:
mkdir build
make
make run
The program requires nothing more than standard C++ and C++ STL libraries:
- algorithm
- cmath
- iostream
- string
- vector