initial commit for new repo
This commit is contained in:
6
dev/conan-project/src/main.cc
Normal file
6
dev/conan-project/src/main.cc
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
std::cout << "Hello World!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
16
dev/conan-project/src/main.cpp
Normal file
16
dev/conan-project/src/main.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "Poco/MD5Engine.h"
|
||||
#include "Poco/DigestStream.h"
|
||||
|
||||
#include "class.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
Poco::MD5Engine md5;
|
||||
Poco::DigestOutputStream ds(md5);
|
||||
ds << "abcdefghijklmnopqrstuvwxyz";
|
||||
ds.close();
|
||||
std::cout << Poco::DigestEngine::digestToHex(md5.digest()) << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user