scrypt-async-modern
TypeScript icon, indicating that this package has built-in type declarations

3.0.12 • Public • Published

scrypt-async-modern npm version

Fast "async" scrypt implementation in modern JavaScript.

Works in browsers without throwing "kill slow script" warnings due to configurable interruptStep, which yields from calculation. Also works with Node.js (but you should really use the C implementation for that).

Installation

Yarn:

$ yarn add scrypt-async-modern

NPM:

$ npm install scrypt-async-modern

To improve performance with small interruptStep values, use setImmediate shim, such as https://github.com/YuzuJS/setImmediate.

Usage

scrypt(password, salt, options): Promise

Derives a key from password and salt and fulfills a Promise with the derived key as the only argument.

If options.interruptStep is set, calculations are interrupted with setImmediate (or zero setTimeout) at the given interruptSteps to avoid freezing the browser. If it's not set or set to zero, the callback is called immediately after the calculation, avoiding setImmediate.

Arguments

  • password: string or Array of bytes or Uint8Array
  • salt: string or Array of bytes or Uint8Array
  • options: object with key derivation options (see below)

Options:

  • N: CPU/memory cost parameter, must be power of two (default = 16384), alternatively you can specify logN where N = 2^logN
  • r: block size parameter (default = 8)
  • p: parallelization parameter (default = 1)
  • dkLen: derived key length (default = 32)
  • interruptStep: (optional) the amount of loop cycles to execute before the next setImmediate/setTimeout (defaults = 0)
  • encoding: (optional) result encoding 'base64' or 'hex' (result will be a string), 'binary' (result will be a Uint8Array) or undefined (result will be an Array of bytes, default).

Example:

const derivedKey = await scrypt("mypassword", "saltysalt", {
  N: 16384,
  r: 8,
  p: 1,
  dkLen: 16,
  encoding: "hex"
});
 
console.log(derivedKey); // "5012b74fca8ec8a4a0a62ffdeeee959d"

Notes

Fork of dchest/scrypt-async-js.

MIT license.

Package Sidebar

Install

npm i scrypt-async-modern

Weekly Downloads

118

Version

3.0.12

License

MIT

Unpacked Size

54.2 kB

Total Files

9

Last publish

Collaborators

  • cretezy