pbkdf2_dart

Last updated:

0 purchases

pbkdf2_dart Image
pbkdf2_dart Images
Add to Cart

Description:

pbkdf2 dart

pbkdf2_dart #
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);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.