Created
February 4, 2013 17:44
-
-
Save jkosoy/4708253 to your computer and use it in GitHub Desktop.
openFrameworks MD5 Encryption
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// .h | |
#include "Poco/MD5Engine.h" | |
#include "Poco/DigestStream.h" | |
#include "Poco/StreamCopier.h" | |
using Poco::DigestEngine; | |
using Poco::MD5Engine; | |
using Poco::DigestOutputStream; | |
using Poco::StreamCopier; | |
// .cpp | |
MD5Engine md5; | |
string input = "hello"; | |
md5.update(input); | |
string output = DigestEngine::digestToHex(md5.digest()); | |
cout << output << endl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment