hashlib 1.5.0
hashlib: ^1.5.0 copied to clipboard
Secure hash functions, checksum generators, and key derivation algorithms optimized for Dart.
1.5.0 #
- Fixes issues with web platform
- Adds web support to
blake2b - Adds Argon2, the Password Hashing Competition winner.
argon2dargon2iargon2id
1.4.0 #
- Modifies the internal structure for better accessibility
- Fixes stream binding issue in
HashBase - Removes a lot of string extensions. Remaining ones are:
sha512digestsha256digestsha224digestsha3_512digestsha3_384digestsha3_256digestsha3_224digestsha1digestmd5digestcrc32code
- Accepts file input in
HashBase - Accepts
saltandpersonalizationvalues withBlake2sandBlake2b
1.3.0 #
- Reduces memory overhead by utilizing the buffer in all
BlockHash - Fixes broken sha512 hash fo web VM
- New features:
blake2sblake2b
1.2.0 #
- New features available:
crc16crc32crc64alder32
1.1.0 #
- Adds
Stringextensions for convenient use all algorithms. - Renames functions:
sha512sum224->sha512t224sumsha512sum256->sha512t256sum
- Renames function for
HashBase:HashBase.stream->HashBase.consumeHashBase.stringString->HashBase.consumeAs
- Modifies the internal
HashDigestSink:- Implements
ByteConversionSinkinstead of extendingSink<List<int>> - Use
addSliceinstead ofadd
- Implements
- Improves performance of some algorithms
1.0.0 #
- First release