conduit_password_hash 3.0.8 copy "conduit_password_hash: ^3.0.8" to clipboard
conduit_password_hash: ^3.0.8 copied to clipboard

outdated

PBKDF2 password hashing utility

conduit_password_hash #

Build Status

Implements PBKDF2 algorithm for securely hashing passwords.

Usage:

var generator = PBKDF2();
var salt = Salt.generateAsBase64String();
var hash = generator.generateKey("mytopsecretpassword", salt, 1000, 32);