New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

wasm-scrypt

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wasm-scrypt

Compiled webassembly of scrypt kdf

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

scrypt-wasm

Scrypt wasm binding for nodejs and web browser

Install

$ npm i wasm-script

Usage

  • Initialize
const wasm = require('wasm-scrypt')
const opts = {
  './scrypt_wasm': {
    'memory': new WebAssembly.Memory({initial: 256, limit: 256}),
    'memoryBase': 1024,
    'table': new WebAssembly.Table({initial: 0, element: 'anyfunc'}),
    'tableBase': 0,
    __wbindgen_throw: function (ptr, len) {
      return new Error(`Custom error message...`)
    },
  }
}
wasm().then((scrypt) => {
  // do kdf
  // scrypt.kdf(...)
})
  • KDF
const opts = {
  N: 16384,
  r: 4,
  p: 1
}
const dklen = 8
const kdf = scrypt.kdf(pwd, 'utf8', salt, 'utf8', dklen, opts)

Benchmark

Computer: 2.2 GHz 6-Core Intel Core i7

$ node -v
v12.18.1

> scrypt-benchmark@0.0.0 start /Users/peterlai/Desktop/Projects/js-scrypt/benchmarks
> node index.js

Scrypt JS  x 115 ops/sec ±0.52% (83 runs sampled)
Scrypt node official  x 419 ops/sec ±0.55% (92 runs sampled)
Scrypt wasm  x 106 ops/sec ±0.82% (78 runs sampled)
Scrypt: fastest is Scrypt node official

Keywords

bitcoin

FAQs

Package last updated on 03 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts