Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/elcuervo/proof_of_work

A Hashcash algorithm implementation
https://github.com/elcuervo/proof_of_work

Last synced: 30 days ago
JSON representation

A Hashcash algorithm implementation

Awesome Lists containing this project

README

        

# Proof Of Work

Pure Ruby implementation of the Hashcash algorithm.

```ruby
hash = ProofOfWork.generate("[email protected]")
# => 1:20:140123:[email protected]::LENoHOSV:18b952

ProofOfWork.valid?(hash)
# => true
```