main file added

This commit is contained in:
avinal
2021-03-05 01:49:06 +05:30
parent d116a38595
commit 6c567cbea6

View File

@@ -7,9 +7,14 @@
* The driver code * The driver code
*/ */
#include <blowfish/blowfish.hpp> #include "Utils.hpp"
#include <iostream> using namespace MCPS;
int main(int argc, char const *argv[]) { int main(int argc, char const *argv[]) {
std::cout << "Hello Encryption"; fileop start;
auto data = start.scan_current_directory();
for (auto d : data) {
d.second.print();
}
return 0; return 0;
} }