hashcash_dart 1.1.0 copy "hashcash_dart: ^1.1.0" to clipboard
hashcash_dart: ^1.1.0 copied to clipboard

A hashcash proof of work implementation for Dart and Flutter

Hashcash #

Hashcash is a proof-of-work algorithm, which has been used as a denial-of-service counter measure technique in a number of systems.

A hashcash stamp constitutes a proof-of-work which takes a parameterizable amount of work to compute for the sender. The recipient (and indeed anyone as it is publicly auditable) can verify received hashcash stamps efficiently. Hashcash was invented by Adam Back in 1997

At this point it is most widely used as the bitcoin mining function.

The email anti-spam tool, like the proof-of-work algorithm, is also called hashcash and is used to create stamps to attach to mail to add a micro-cost to sending mail to deter spamming. The main use of the hashcash stamp is as a white-listing hint to help hashcash users avoid losing email due to content based and blacklist based anti-spam systems.

Hashcash source code includes a library form, and also the algorithm is extremely simple to code from scratch with the availability of a hash library. Verification can be done by a human eye (count leading 0s) even with availability of common preinstalled command line tools such as sha1sum. The algorithm works with a cryptographic hash, such as SHA1, SHA256 or coming SHA3 that exhibits 2nd-preimage resistance. Note that 2nd-preimage resistance is a stronger hash property than the collision resistance property.

Usage #

A simple example:

import 'package:hashcash/hashcash_dart.dart';

main() {
  var stamp = Hashcash.mint('dev@konstantinullrich.de');
  var checked = Hashcash.check(stamp, resource: 'dev@konstantinullrich.de');
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

2
likes
135
pub points
0%
popularity

Publisher

verified publisherkonstantinullrich.de

A hashcash proof of work implementation for Dart and Flutter

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

crypto

More

Packages that depend on hashcash_dart