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

Dart 1 only

Implementation of PBKDF2 key derivation function

pbkdf2 #

This is an implementation of the PBKDF2 key derivation function, as defined in RFC 2898.

Usage #

// Create PBKDF2 instance using the SHA256 hash. The default is to use SHA1
var gen = new PBKDF2(hash: new SHA256());

// Generate a 32 byte key using the given password and salt, with 1000 iterations
var key = gen.generateKey("password", "salt", 1000, 32);

Build Status

0
likes
0
pub points
51%
popularity

Publisher

unverified uploader

Implementation of PBKDF2 key derivation function

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypto

More

Packages that depend on pbkdf2