hashlib 1.0.0-dev.5
hashlib: ^1.0.0-dev.5 copied to clipboard
RFC-compliant implementations of secure hash functions in pure Dart with zero-dependencies.
example/hashlib_example.dart
import 'package:hashlib/hashlib.dart' as hashlib;
void main() {
final md5 = hashlib.md5("Hello World");
print('MD5[Hello World] => $md5');
}