2020-05-06 07:55:22 +02:00
2020-03-27 09:40:56 +01:00
fix
2020-05-06 07:55:22 +02:00
fix
2020-05-06 07:33:05 +02:00
2020-03-14 14:09:42 +01:00
fix
2020-05-06 07:55:22 +02:00
fix
2020-05-06 07:50:54 +02:00
2020-05-05 19:50:10 +02:00
fix
2020-03-04 13:02:29 +01:00
2020-05-05 19:23:30 +02:00
2020-03-06 08:38:14 +01:00
fix
2020-05-06 07:50:54 +02:00
fix
2020-05-06 07:33:05 +02:00
fix
2020-05-06 07:44:58 +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%