From 680aeb346761fe7bba601b61cbbbf823aaeb3641 Mon Sep 17 00:00:00 2001 From: Michaƫl Zasso Date: Tue, 19 Jun 2018 09:35:50 +0200 Subject: 2018-16-20, Version 10.5.0 (Current) Notable changes: * **crypto**: * Support for `crypto.scrypt()` has been added. [#20816](https://github.com/nodejs/node/pull/20816) * **fs**: * BigInt support has been added to `fs.stat` and `fs.watchFile`. [#20220](https://github.com/nodejs/node/pull/20220) * APIs that take `mode` as arguments no longer throw on values larger than `0o777`. [#20636](https://github.com/nodejs/node/pull/20636) [#20975](https://github.com/nodejs/node/pull/20975) (Fixes: [#20498](https://github.com/nodejs/node/issues/20498)) * Fix crashes in closed event watchers. [#20985](https://github.com/nodejs/node/pull/20985) (Fixes: [#20297](https://github.com/nodejs/node/issues/20297)) * **Worker Threads**: * Support for multi-threading has been added behind the `--experimental-worker` flag in the `worker_threads` module. This feature is *experimental* and may receive breaking changes at any time. [#20876](https://github.com/nodejs/node/pull/20876) PR-URL: https://github.com/nodejs/node/pull/21400 --- doc/api/crypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/api/crypto.md') diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 6c52cebae4..66b50f7069 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2143,7 +2143,7 @@ request. ### crypto.scrypt(password, salt, keylen[, options], callback) - `password` {string|Buffer|TypedArray} - `salt` {string|Buffer|TypedArray} @@ -2189,7 +2189,7 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => { ### crypto.scryptSync(password, salt, keylen[, options]) - `password` {string|Buffer|TypedArray} - `salt` {string|Buffer|TypedArray} -- cgit v1.2.3