hashcash 1.0.0
hashcash: ^1.0.0 copied to clipboard
Dart implementation of HashCash. see http://www.hashcash.org/ for more information.
// Copyright (c) 2015, Kevin Segaud. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import "package:hashcash/hashcash.dart";
main() {
String stamp = HashCash.mint("segaud.kevin@gmail.com");
print(stamp);
print(HashCash.check(stamp, resource: "segaud.kevin@gmail.com"));
}