hashlib 1.0.0-dev.1
hashlib: ^1.0.0-dev.1 copied to clipboard
Python's hashlib in pure Dart
hashlib #
This library contains some implementation of popular hashing algorithms in pure Dart inspired by Python's hashlib interface.
Features #
Algorithms | Supported | Since |
---|---|---|
md5 |
||
sha1 |
||
sha224 |
||
sha256 |
||
sha384 |
||
sha512 |
||
blake2b |
||
blake2s |
||
sha3_224 |
||
sha3_256 |
||
sha3_384 |
||
sha3_512 |
||
shake_128 |
||
shake_256 |
||
pbkdf2_hmac |
Getting started #
The following import will give you access to all of the algorithms in this package.
import 'package:hashlib/hashlib.dart';
Usage #
TBD