Files
Krypto/src/Main.cpp

16 lines
287 B
C++
Raw Normal View History

2021-02-18 22:09:51 +05:30
/**
* /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;
}