hashlib 1.0.0-dev.6 copy "hashlib: ^1.0.0-dev.6" to clipboard
hashlib: ^1.0.0-dev.6 copied to clipboard

retracted

RFC-compliant implementations of secure hash functions in pure Dart with zero-dependencies.

hashlib #

plugin version dependencies Dart

This library contains RFC-compliant implementations of secure hash functions in pure Dart with zero-dependencies.

Features #

Secure hash functions: #

Algorithms Supported Since
md5 ✔️ 1.0.0
sha1 ✔️ 1.0.0
sha224 ✔️ 1.0.0
sha256 ✔️ 1.0.0
sha384
sha512
sha512_224
sha512_256
blake2b
blake2s
blake3
sha3_224 / keccak224
sha3_256 / keccak256
sha3_384 / keccak384
sha3_512 / keccak512
shake128 / keccak256
shake256 / keccak512

Getting started #

The following import will give you access to all of the algorithms in this package.

import 'package:hashlib/hashlib.dart' as hashlib;

Usage #

Check the API Documentation for usage instruction. Examples can be found inside the example folder.

import 'package:hashlib/hashlib.dart' as hashlib;

void main() {
  final text = "Happy Hashing!";
  print('[MD5] $text => ${hashlib.md5sum(text)}');
  print('[SHA-1] $text => ${hashlib.sha1sum(text)}');
  print('[SHA-224] $text => ${hashlib.sha224sum(text)}');
  print('[SHA-256] $text => ${hashlib.sha256sum(text)}');
}

Benchmarks #

To obtain the following benchmarks, run this command:

dart run ./benchmark/benchmark.dart`

Libraries:

With string of length 17 (1000 times):

Algorithm Hashlib Crypto
MD5 359 us 768 us
SHA-1 549 us 892 us
SHA-224 809 us 1167 us
SHA-256 787 us 1160 us

With string of length 1777 (50 times):

Algorithm Hashlib Crypto
MD5 408 us 518 us
SHA-1 599 us 658 us
SHA-224 934 us 905 us
SHA-256 942 us 916 us

With string of length 77000 (2 times):

Algorithm Hashlib Crypto
MD5 675 us 847 us
SHA-1 1027 us 1081 us
SHA-224 1592 us 1502 us
SHA-256 1588 us 1501 us
31
likes
0
pub points
89%
popularity

Publisher

verified publisherbitanon.dev

RFC-compliant implementations of secure hash functions in pure Dart with zero-dependencies.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on hashlib