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

outdatedDart 1 only

PBKDF2 implementation in Dart

dart_pbkdf2 #

License: MIT

Dart implementation of the PBKDF2 key derivation function

Usage: #

// default is to use SHA256
var pbkdf2 = new Pbkdf2();

// to use SHA1
var pbkdf2 = new Pbkdf2(new SHA1());

var key = pbkdf2.generate(Password, Salt, iterations, derived_key_length);

Tests: #

dart test/pbkdf2_test.dart
0
likes
0
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

PBKDF2 implementation in Dart

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

crypto, fixnum, sequence_zip, unittest, utf

More

Packages that depend on dart_pbkdf2