Timo Hocker
e6d353fe04
update-scanner: automatic update
@sapphirecode/encoding-helper: 1.0.35 ==> 1.0.36 minor @sapphirecode/eslint-config: 2.0.24 ==> 2.0.25 minor
Password Helper
ensuring secure password storage on the server side
const password_helper = require('@scode/password-helper');
const hash = await password_helper.hash('foo');
await password_helper.verify(hash, 'foo'); // returns true;
await password_helper.verify(hash, 'bar'); // returns false;
Description
Languages
JavaScript
100%