Skip to content

Automatically exported from code.google.com/p/smallsha1

Notifications You must be signed in to change notification settings

johnnyselleck/smallsha1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

You only need sha1.h and sha1.cpp when including this in your own project.
main.cpp and 1000sha1.txt is only used for unittesting and benchmarking.

The 1000sha1.txt file was gennerated with a PHP script, to make sure that this implementation was correct.
This is the PHP script used:

<?php
$f=fopen("1000sha1.txt","w");
$str='';
for($i=0;$i<1000;$i++)
{
	$j=$i%10;
	$str=$str."$j";
	fwrite($f,sha1($str));
}
fclose($f);
echo strlen($str);
?>

About

Automatically exported from code.google.com/p/smallsha1

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages