main file added

This commit is contained in:
avinal
2021-02-18 22:09:51 +05:30
parent d29234f07d
commit a34ed2316e

15
src/Main.cpp Normal file
View File

@@ -0,0 +1,15 @@
/**
* /mnt/z/my_git/RCRS-CSD-327/src/Main.cpp
* @file Main.cpp
* @author Avinal Kumar
* @since February 18, 2021
*
* The driver code
*/
#include <blowfish/blowfish.hpp>
#include <iostream>
int main(int argc, char const *argv[]) {
std::cout << "Hello Encryption";
return 0;
}