Secure hash algorithm 1 class written in C++ programming language.
- requires compiler support for C++11
#include <iostream>
#include "source\SHA1.hpp"
using namespace std;
int main()
{
string hash = SHA1("example string").generate();
cout << hash << endl;
cin.get();
}