rust-hashcash 0.3.3

Rust hashcash algorithm implementation with sha3 support
Documentation
1
2
3
4
5
6
7
use hashcash::{Stamp, check};

fn main() {
    let stamp = Stamp::default();
    println!("{}", stamp.to_string());
    println!("{:?}", check(&stamp.to_string()));
}