scrypt-async-modern
v3.0.12
Published
Fast "async" scrypt implementation in modern JavaScript.
Downloads
5,600
Maintainers
Readme
scrypt-async-modern
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
orArray
of bytes orUint8Array
salt
:string
orArray
of bytes orUint8Array
options
: object with key derivation options (see below)
Options:
N
: CPU/memory cost parameter, must be power of two (default = 16384), alternatively you can specifylogN
where N = 2^logNr
: 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 astring
),'binary'
(result will be aUint8Array
) or undefined (result will be anArray
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.