https://github.com/stablekernel/dart-password-hash
Hashes passwords using PBKDF2.
https://github.com/stablekernel/dart-password-hash
Last synced: 21 days ago
JSON representation
Hashes passwords using PBKDF2.
- Host: GitHub
- URL: https://github.com/stablekernel/dart-password-hash
- Owner: stablekernel
- License: mit
- Created: 2017-06-01T17:53:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-22T09:46:55.000Z (about 5 years ago)
- Last Synced: 2025-11-01T15:04:53.181Z (4 months ago)
- Language: Dart
- Size: 7.81 KB
- Stars: 15
- Watchers: 3
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# password_hash
[](https://travis-ci.org/stablekernel/dart-password-hash)
Implements PBKDF2 algorithm for securely hashing passwords.
Usage:
```
var generator = new PBKDF2();
var salt = Salt.generateAsBase64String();
var hash = generator.generateKey("mytopsecretpassword", salt, 1000, 32);
```