Skip to content

An implementation of the PBKDF2 key derivation function for Dart

License

Notifications You must be signed in to change notification settings

jamesots/pbkdf2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

An implementation of the PBKDF2 key derivation function for Dart

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages