md4 0.2.0 copy "md4: ^0.2.0" to clipboard
md4: ^0.2.0 copied to clipboard

Dart 1 only

Pure-Dart implementation of the MD4 hash function

Dart MD4 implementation #

This is a simple implementation of the MD4 has function, following closely from RFC1320.

Installation #

Add this to your pubspec.yaml (or create it):

dependencies:
  md4: any

Then run the Pub Package Manager (comes with the Dart SDK):

pub install

Usage #

The MD4 class should behave just like the existing hash functions in dart:crypto.

import 'package:md4/md4.dart';

main() {
 MD4 md4 = new MD4();
 md4.add('Hello'.codeUnits);
 print md4.close();
}
0
likes
15
pub points
0%
popularity

Publisher

unverified uploader

Pure-Dart implementation of the MD4 hash function

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

crypto

More

Packages that depend on md4