hashcash 1.0.0 copy "hashcash: ^1.0.0" to clipboard
hashcash: ^1.0.0 copied to clipboard

Dart 1 only

Dart implementation of HashCash. see http://www.hashcash.org/ for more information.

example/main.dart

// 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"));
}
0
likes
40
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

Dart implementation of HashCash. see http://www.hashcash.org/ for more information.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

crypto

More

Packages that depend on hashcash