Timo Hocker 37d0ec22f8 update-scanner: automatic update
@sapphirecode/encoding-helper: 1.0.42 ==> 1.0.43 minor
@stryker-mutator/core: 3.2.4 ==> 3.3.0 minor
@stryker-mutator/javascript-mutator: 3.2.4 ==> 3.3.0 minor
ava: 3.8.2 ==> 3.9.0 minor
2020-06-19 13:02:59 +02:00
2020-05-17 17:23:22 +02:00
fix
2020-05-06 07:55:22 +02:00
2020-05-17 17:23:22 +02:00
2020-03-14 14:09:42 +01:00
2020-05-17 17:23:22 +02:00
2020-05-17 17:23:22 +02:00
2020-05-17 17:23:22 +02:00
fix
2020-03-04 13:02:29 +01:00
2020-05-17 17:23:22 +02:00
2020-05-17 17:23:22 +02:00
fix
2020-05-17 18:58:23 +02:00
2020-05-17 17:23:22 +02:00
2020-06-19 13:02:59 +02: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%