diff options
author | Shelley Vohr <shelley.vohr@gmail.com> | 2020-02-17 13:02:21 -0800 |
---|---|---|
committer | Shelley Vohr <shelley.vohr@gmail.com> | 2020-02-18 08:31:53 -0800 |
commit | 1f0f58cb81503215df69dbaffc53e286e661e1c3 (patch) | |
tree | 2371306fa06a8cd8b4da034d0dbaf42169361c28 /doc/api/crypto.md | |
parent | 7c2d33f38f451e92ad20f8bbb577a7173abe21d3 (diff) | |
download | node-new-1f0f58cb81503215df69dbaffc53e286e661e1c3.tar.gz |
2020-02-18, Version 13.9.0 (Current)v13.9.0v13.9.0-proposal
Notable changes:
* async_hooks
* add executionAsyncResource (Matteo Collina) #30959
* crypto
* add crypto.diffieHellman (Tobias Nießen) #31178
* add DH support to generateKeyPair (Tobias Nießen) #31178
* simplify DH groups (Tobias Nießen) #31178
* add key type 'dh' (Tobias Nießen) #31178
* test
* skip keygen tests on arm systems (Tobias Nießen) #31178
* perf_hooks
* add property flags to GCPerformanceEntry (Kirill Fomichev) #29547
* process
* report ArrayBuffer memory in `memoryUsage()` (Anna Henningsen) #31550
* readline
* make tab size configurable (Ruben Bridgewater) #31318
* report
* add support for Workers (Anna Henningsen) #31386
* worker
* add ability to take heap snapshot from parent thread (Anna Henningsen) #31569
* added new collaborators
* add ronag to collaborators (Robert Nagy) #31498
PR-URL: https://github.com/nodejs/node/pull/31837
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r-- | doc/api/crypto.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 28f6eb22d8..e15c7f1d6b 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1232,7 +1232,7 @@ passing keys as strings or `Buffer`s due to improved security features. <!-- YAML added: v11.6.0 changes: - - version: REPLACEME + - version: v13.9.0 pr-url: https://github.com/nodejs/node/pull/31178 description: Added support for `'dh'`. - version: v12.0.0 @@ -2091,7 +2091,7 @@ algorithm names. ### `crypto.diffieHellman(options)` <!-- YAML -added: REPLACEME +added: v13.9.0 --> * `options`: {Object} @@ -2107,7 +2107,7 @@ Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'` <!-- YAML added: v10.12.0 changes: - - version: REPLACEME + - version: v13.9.0 pr-url: https://github.com/nodejs/node/pull/31178 description: Add support for Diffie-Hellman. - version: v12.0.0 @@ -2180,7 +2180,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties. <!-- YAML added: v10.12.0 changes: - - version: REPLACEME + - version: v13.9.0 pr-url: https://github.com/nodejs/node/pull/31178 description: Add support for Diffie-Hellman. - version: v12.0.0 |