This is a cypher / decypher algorithm called Playfair written in C. It was for an university project.
- A C compiler
- Cmake installed in your computer
- Download the files
- Extract it in a directory
- "cd" into the directory
- Run the following commands:
mkdir build
cd build
cmake ..
cmake --build .
If you want to encode files, run:
./playfair encode <keyfile> <output_dir> <file1> ... <filen>
If you want to decode files, run:
./playfair decode <keyfile> <output_dir> <file1> ... <filen>