Click here to Skip to main content
15,880,469 members
Articles / Desktop Programming / MFC

Using hashlib++ for easily creating cryptographic checksums such as SHA1 and MD5

Rate me:
Please Sign up or sign in to vote.
2.00/5 (2 votes)
22 Sep 2007CPOL1 min read 37.6K   643   13   5
This short article explains how to create a cryptographic checksum (a hash) with the help of the hashlib++ library.

Introduction

This short article explains how to create a cryptographic checksum (a hash) with the help of the hashlib++ library. hashlib++ is a simple and very easy to use library to create a cryptographic checksum called "hash". The library is written in plain C++, and should work with every compiler and platform. hashlib++ is released under the BSD-license and is therefore free software.

Using the Code

hashlib++ provides the so called "wrappers" for each supported hash function which simplifies the creation of the relevant hash. Instead of implementing the full algorithm for the hash function, you only have to instantiate a desired wrapper and call a member function like getHashFromString() or getHashFromFile().

After downloading the small library from the project's website (http://hashlib2plus.sourceforge.net), you have to include the base class "hashwrapper.h" and the header file of the wrapper you want to use:

C++
#include "hashwrapper.h"
#include "sha1wrapper.h"
#include "md5wrapper.h"

After that, you can create wrapper objects:

C++
hashwrapper *md5 = new md5wrapper();
hashwrapper *sha1 = new sha1wrapper();

Once a wrapper has been instantiated, you can basically call the member functions getHashFromFile() and getHashFromString() to create a hash from a file or string.

C++
std::string mytexthash = md5->getHashFromString("Hello World");
std::string myfilehash = md5->getHashFromFile("README.TXT");

And that's all!

C++
delete md5;
delete sha1;

Now you can add the corresponding *.cpp files (for MD5, for example: md5.cpp and md5wrapper.cpp) to your project and start compiling.

I have attached libtest.cpp, which is a full example of how to use hashlib++.

Have fun!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralProblem same as BluePain Pin
Masoud Gh8-Nov-10 20:00
Masoud Gh8-Nov-10 20:00 
GeneralRe: Problem same as BluePain Pin
gripmaster8-Nov-10 20:18
gripmaster8-Nov-10 20:18 
Generalwords with accents Pin
ale_nehurotykos19-Feb-09 8:14
ale_nehurotykos19-Feb-09 8:14 
QuestionWhats wrong? Pin
BluePain14-Nov-07 8:04
BluePain14-Nov-07 8:04 
AnswerRe: Whats wrong? Pin
gripmaster18-Nov-07 22:54
gripmaster18-Nov-07 22:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.