mirror of
https://github.com/avinal/Krypto.git
synced 2026-01-10 23:28:36 +05:30
16 lines
287 B
C++
16 lines
287 B
C++
|
|
/**
|
||
|
|
* /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;
|
||
|
|
}
|