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

retracted

PBKDF2 password hashing utility

conduit_password_hash #

Build Status

Implements PBKDF2 algorithm for securely hashing passwords.

Usage:

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