summaryrefslogtreecommitdiff
path: root/doc/api/crypto.md
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2018-06-19 09:35:50 +0200
committerMichaël Zasso <targos@protonmail.com>2018-06-20 20:39:16 +0200
commit680aeb346761fe7bba601b61cbbbf823aaeb3641 (patch)
tree5962e89e6c7dc0f546ee9fab4303acb5ba7cbe04 /doc/api/crypto.md
parenta77b30ca7fa9d2d945bf04707ed38e885acb0626 (diff)
downloadandroid-node-v8-680aeb346761fe7bba601b61cbbbf823aaeb3641.tar.gz
android-node-v8-680aeb346761fe7bba601b61cbbbf823aaeb3641.tar.bz2
android-node-v8-680aeb346761fe7bba601b61cbbbf823aaeb3641.zip
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
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md4
1 files changed, 2 insertions, 2 deletions
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)
<!-- YAML
-added: REPLACEME
+added: v10.5.0
-->
- `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])
<!-- YAML
-added: REPLACEME
+added: v10.5.0
-->
- `password` {string|Buffer|TypedArray}
- `salt` {string|Buffer|TypedArray}