Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Latest commit

 

History

History
15 lines (9 loc) · 392 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 392 Bytes

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);