Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-11 22:54:19 +0300
committerJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-12 17:39:55 +0300
commite23c256594c291dd2da481512e2dc1d0e4421375 (patch)
treee01eec9543a15831f6201c80df08c3d1bc7e7443 /doc/api/crypto.md
parentfd36a8dadba7fcbd74f0ab82a8ee1b3150ce5167 (diff)
2022-10-12, Version 16.18.0 'Gallium' (LTS)
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) https://github.com/nodejs/node/pull/44191 crypto: allow zero-length secret KeyObject (Filip Skokan) https://github.com/nodejs/node/pull/44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) https://github.com/nodejs/node/pull/44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) https://github.com/nodejs/node/pull/44588 http: make idle http parser count configurable (theanarkh) https://github.com/nodejs/node/pull/43974 http: throw error on content-length mismatch (sidwebworks) https://github.com/nodejs/node/pull/44378 lib: add diagnostics channel for process and worker (theanarkh) https://github.com/nodejs/node/pull/44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) https://github.com/nodejs/node/pull/44021 net: add local family (theanarkh) https://github.com/nodejs/node/pull/43975 report: expose report public native apis (Chengzhong Wu) https://github.com/nodejs/node/pull/44255 src: expose environment RequestInterrupt api (Chengzhong Wu) https://github.com/nodejs/node/pull/44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) https://github.com/nodejs/node/pull/44505 test_runner: add before/after/each hooks (Moshe Atlow) https://github.com/nodejs/node/pull/43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) https://github.com/nodejs/node/pull/43576 PR-URL: https://github.com/nodejs/node/pull/44886
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index d2eb977f622..4ab859c8538 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -3562,7 +3562,9 @@ and it will be impossible to extract the private key from the returned object.
<!-- YAML
added: v11.6.0
changes:
- - version: v18.8.0
+ - version:
+ - v18.8.0
+ - v16.18.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The key can now be zero-length.
- version: v15.0.0
@@ -4231,7 +4233,9 @@ web-compatible code use [`crypto.webcrypto.getRandomValues()`][] instead.
<!-- YAML
added: v15.0.0
changes:
- - version: v18.8.0
+ - version:
+ - v18.8.0
+ - v16.18.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The input keying material can now be zero-length.
- version: v18.0.0
@@ -4294,7 +4298,9 @@ hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => {
<!-- YAML
added: v15.0.0
changes:
- - version: v18.8.0
+ - version:
+ - v18.8.0
+ - v16.18.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The input keying material can now be zero-length.
-->