hashcash
v1.8.0
Pure PHP implementation of hashcash 1.
The project outlines as described in my blog post about Open Source Software Collaboration.
The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to composer.json:
composer.phar require thefox/hashcash
See examples.php
for more examples.
<?php
require 'vendor/autoload.php';
use TheFoxPowhashcash;
$stamp = hashcash::newInstance(20, '[email protected]')->mint();
print "hashcash stamp: '".$stamp."'n";
?>
<?php
require 'vendor/autoload.php';
use TheFoxPowhashcash;
$hashcash = new hashcash(20, '[email protected]');
print "hashcash stamp: '".$hashcash->mint()."'n";
?>