Skip to content

Instantly share code, notes, and snippets.

@jkosoy
Created February 4, 2013 17:44
Show Gist options
  • Save jkosoy/4708253 to your computer and use it in GitHub Desktop.
Save jkosoy/4708253 to your computer and use it in GitHub Desktop.
openFrameworks MD5 Encryption
// .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