password_hasher 0.1.0 copy "password_hasher: ^0.1.0" to clipboard
password_hasher: ^0.1.0 copied to clipboard

outdatedDart 1 only

Utility for hashing passwords

password_hasher #

This is a small utility to help with hashing passwords.

Example:

// create a hasher with the default salt generator and hash (SHA256)
var hasher = new PasswordHasher();

// the password will be hashed with 32 bytes of randomly generated salt
var hash = hasher.hashPassword("mypassword");

// the returned hash contains the salt and the hashed password, and can be
// checked against a password using checkPassword():
var passwordOk = hasher.checkPassword(hash, "mypassword");
0
likes
10
points
6
downloads

Publisher

unverified uploader

Weekly Downloads

Utility for hashing passwords

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

crypto, unittest

More

Packages that depend on password_hasher