2020-03-06 08:38:14 +01:00
2020-03-04 13:22:41 +01:00
2020-03-04 12:20:42 +01:00
2020-03-04 13:22:41 +01:00
2020-03-04 12:20:42 +01:00
2020-03-04 13:22:41 +01:00
fix
2020-03-04 13:02:29 +01:00
fix
2020-03-04 13:02:29 +01:00
fix
2020-03-04 13:02:29 +01:00
2020-03-06 08:38:14 +01:00
2020-03-04 21:23:55 +01: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%