The main source code is in src/
To compile a .cpp file from src/
, use the make command as follows
and pass the filename without the extension. The output file will be stored in the
build/
folder.
// make file=<filename>
make file=RSA
To run the code, simply run the output file as per the example given below.
// ./build/<filename>
./build/RSA
Utility files have been added in the utils/
folder. They contain necessary
functions to facilitate parameter Generation and Convertions.