Timo Hocker 6d7ff3a4d5 update-scanner: automatic update
@scode/encoding-helper: 1.0.19 ==> 1.0.20 minor
@scode/eslint-config: 2.0.10 ==> 2.0.11 minor
ava: 3.7.0 ==> 3.7.1 minor
2020-04-21 11:25:59 +02:00
2020-03-27 09:40:56 +01:00
2020-03-25 17:02:04 +01:00
2020-03-14 14:09:42 +01:00
2020-03-04 12:20:42 +01:00
2020-03-25 17:02:04 +01:00
2020-03-25 17:02:04 +01:00
fix
2020-03-04 13:02:29 +01:00
2020-04-14 14:58:07 +02:00
2020-03-06 08:38:14 +01:00
2020-03-25 17:02:04 +01:00
2020-04-21 11:25:59 +02:00

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
No description provided
Readme 422 KiB
Languages
JavaScript 100%