From 9c4b360d080ed8f418b04d6604f932a6dd185a52 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/35480 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Tobias Nießen --- doc/api/crypto.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index e42051d4efca8e..e3b70390e49382 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1458,6 +1458,11 @@ changes: - version: v15.0.0 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: v15.0.0 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. @@ -3314,6 +3324,12 @@ Throws an error if FIPS mode is not available. ### `crypto.sign(algorithm, data, key)` @@ -3380,6 +3396,11 @@ changes: - version: v15.0.0 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. -->