Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Latest commit

 

History

History
15 lines (9 loc) · 388 Bytes

File metadata and controls

15 lines (9 loc) · 388 Bytes

password_hash

Build Status

Implements PBKDF2 algorithm for securely hashing passwords.

Usage:

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