@appliedblockchain/helpers
Advanced tools
Comparing version 5.5.5 to 5.5.6
# 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 @@ |
// @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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
154660
4057