Skip to content

Instantly share code, notes, and snippets.

@nuke99
Created June 16, 2012 06:16
Show Gist options
  • Save nuke99/2940164 to your computer and use it in GitHub Desktop.
Save nuke99/2940164 to your computer and use it in GitHub Desktop.
#include <iostream>
#include "md5.h"
using namespace std;
MD5 md5;
void md5conv (char val){
cout << "md5 hash of the value " << val << " is " << md5.digestString(val) ;
}
int main()
{
char hash;
cout << "Enter a value : " ;
cin >> hash;
md5conv(hash);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment