From 794cd62501edce9f1769b36ec5f604a5072716f9 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 12 Oct 2020 12:38:29 +0200 Subject: [PATCH] doc,crypto: added sign/verify method changes about dsaEncoding --- doc/api/crypto.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 32e90ca030bbb5..da0defd34ffeb7 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1458,6 +1458,11 @@ changes: - version: REPLACEME pr-url: https://github.com/nodejs/node/pull/35093 description: The privateKey can also be an ArrayBuffer and CryptoKey. + - version: + - v12.16.0 + - v13.2.0 + pr-url: https://github.com/nodejs/node/pull/29292 + description: This function now supports IEEE-P1363 DSA and ECDSA signatures. - version: v12.0.0 pr-url: https://github.com/nodejs/node/pull/26960 description: This function now supports RSA-PSS keys. @@ -1576,6 +1581,11 @@ changes: - version: REPLACEME pr-url: https://github.com/nodejs/node/pull/35093 description: The object can also be an ArrayBuffer and CryptoKey. + - version: + - v12.16.0 + - v13.2.0 + pr-url: https://github.com/nodejs/node/pull/29292 + description: This function now supports IEEE-P1363 DSA and ECDSA signatures. - version: v12.0.0 pr-url: https://github.com/nodejs/node/pull/26960 description: This function now supports RSA-PSS keys. @@ -3284,6 +3294,12 @@ Throws an error if FIPS mode is not available. ### `crypto.sign(algorithm, data, key)` @@ -3350,6 +3366,11 @@ changes: - version: REPLACEME pr-url: https://github.com/nodejs/node/pull/35093 description: The data, key, and signature arguments can also be ArrayBuffer. + - version: + - v12.16.0 + - v13.2.0 + pr-url: https://github.com/nodejs/node/pull/29292 + description: This function now supports IEEE-P1363 DSA and ECDSA signatures. -->