Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@appliedblockchain/helpers

Package Overview
Dependencies
Maintainers
17
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appliedblockchain/helpers - npm Package Compare versions

Comparing version 5.5.5 to 5.5.6

5

Changelog.md
# Changelog
## [v5.5.6](../../compare/v5.5.5...v5.5.6) (2020-06-16)
* Bumping flow.
* Updating changelog.
## [v5.5.5](../../compare/v5.5.4...v5.5.5) (2020-06-08)

@@ -4,0 +9,0 @@

23

crypto-scrypt.js
// @flow
// $FlowFixMe
const { scrypt } = require('crypto')
/*::
type R = (
password: string | Buffer | DataView,
salt: string | Buffer | DataView,
keylen: number,
options: {|
cost?: number, // Default 16384.
blockSize?: number, // Default 8.
parallelization?: number, // Default 1.
N?: number, // Alias of `cost`.
r?: number, // Alias of `blockSize`.
p?: number, // Alias of `parallelization`.
maxmem?: number, // Default 32 * 1024 * 1024.
|},
callback: (err: ?Error, derivedKey: ?Buffer) => void
) => void
*/
module.exports = (scrypt /*: R */)
module.exports = scrypt
{
"name": "@appliedblockchain/helpers",
"version": "5.5.5",
"version": "5.5.6",
"description": "No dependency, single file helpers.",

@@ -28,3 +28,3 @@ "main": "index.js",

"eslint": "7.2.0",
"flow-bin": "0.126.1",
"flow-bin": "0.127.0",
"jest": "26.0.1",

@@ -31,0 +31,0 @@ "npm-check": "5.9.2"

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc