dart_pbkdf2 0.2.1 copy "dart_pbkdf2: ^0.2.1" to clipboard
dart_pbkdf2: ^0.2.1 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: #

make test
0
likes
10
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

PBKDF2 implementation in Dart

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

crypto, fixnum, sequence_zip, unittest, utf

More

Packages that depend on dart_pbkdf2