1.0.0 • Published 6 years ago
hashify-matchify v1.0.0
hashify-matchify
Salt and hash passwords using crypto
Install
$ npm i --save hashify-matchify
const { hashify, matchify } = require('hashify-matchify');Hash
// by default a random salt is used, but a salt may be provided as the 2nd param
const { salt, hash, iterations } = await hashify('password');Check
const pass = await matchify(hash, salt, iterations, 'password');1.0.0
6 years ago