#ifndef CMD5_H
#define CMD5_H

extern "C"
{
#ifdef USE_OPENSSL
#include <openssl/md5.h>
#else
#include "md5.h"
#endif
}

using namespace std;
#include <string>

class Cmd5
{
public:
  Cmd5();

  void init();

  // get the sum as a 16byte buffer
  void getSum(char *buf);
  // get the sum into a string reference
  string getSum();

  // add some more data to the data that has been summed.
  void addData(const char *buf, size_t bytes);
  void addData(const string &buf);

private:
  MD5_CTX m_context;
};

#endif



syntax highlighted by Code2HTML, v. 0.9.1