Skip to content
/ pbkdf2 Public
forked from marceloneppel/pbkdf2

An implementation of the PBKDF2 key derivation function for Dart

License

Notifications You must be signed in to change notification settings

G0mb/pbkdf2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PBKDF2 Key Derivation Function

This is fork of pbkdf2_dart, as defined in RFC 2898.

Usage

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

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

Credits

Thanks you Sunkeun Choi for addding support to 💪🏼null safety💪🏼

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

  • Dart 100.0%