Timo Hocker 264271c80e
All checks were successful
continuous-integration/drone/push Build is passing
fix typescript definitions
2021-01-15 20:02:36 +01:00
2020-10-05 20:24:47 +02:00
2020-08-07 08:13:08 +02:00
fix
2020-05-06 07:55:22 +02:00
2020-05-17 17:23:22 +02:00
2021-01-15 20:02:36 +01:00
2020-05-17 17:23:22 +02:00
fix
2020-07-19 14:12:15 +02:00
2020-05-17 17:23:22 +02:00
2020-10-05 20:24:47 +02:00
2020-05-17 17:23:22 +02:00
2021-01-15 20:02:36 +01:00
fix
2020-05-17 18:58:23 +02:00
fix
2020-11-03 09:38:20 +01:00
fix
2020-11-03 09:38:20 +01:00

@sapphirecode/password-helper

version: 1.0.x

easy password storage with argon2

Installation

npm:

npm i --save @sapphirecode/password-helper

yarn:

yarn add @sapphirecode/password-helper

Usage

const password_helper = require('@sapphirecode/password-helper');

// create a hash
const hash = await password_helper.hash('foo');

// verify a password using the hash
await password_helper.verify(hash, 'foo'); // returns true;
await password_helper.verify(hash, 'bar'); // returns false;

License

MIT © Timo Hocker timo@scode.ovh

Description
No description provided
Readme 422 KiB
Languages
JavaScript 100%