Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 425 Bytes

ReadMe.md

File metadata and controls

18 lines (15 loc) · 425 Bytes

SHA-1 Build Status

Secure hash algorithm 1 class written in C++ programming language.

  • requires compiler support for C++11

Usage example

#include <iostream>
#include "source\SHA1.hpp"

using namespace std;

int main()
{
	string hash = SHA1("example string").generate();
	cout << hash << endl;
	cin.get();
}