daancode / sha-1

SHA-1 generator written in C++.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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();
}

About

SHA-1 generator written in C++.


Languages

Language:C++ 96.8%Language:Makefile 3.2%