Skip to content

Commit 9eeae3b

Browse files
panvaBethGriggs
authored andcommitted
doc,crypto: added sign/verify method changes about dsaEncoding
PR-URL: #35480 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 42eb547 commit 9eeae3b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

doc/api/crypto.md

+22
Original file line numberDiff line numberDiff line change
@@ -1409,6 +1409,11 @@ console.log(verify.verify(publicKey, signature));
14091409
<!-- YAML
14101410
added: v0.1.92
14111411
changes:
1412+
- version:
1413+
- v12.16.0
1414+
- v13.2.0
1415+
pr-url: https://github.com/nodejs/node/pull/29292
1416+
description: This function now supports IEEE-P1363 DSA and ECDSA signatures.
14121417
- version: v12.0.0
14131418
pr-url: https://github.com/nodejs/node/pull/26960
14141419
description: This function now supports RSA-PSS keys.
@@ -1522,6 +1527,11 @@ This can be called many times with new data as it is streamed.
15221527
<!-- YAML
15231528
added: v0.1.92
15241529
changes:
1530+
- version:
1531+
- v12.16.0
1532+
- v13.2.0
1533+
pr-url: https://github.com/nodejs/node/pull/29292
1534+
description: This function now supports IEEE-P1363 DSA and ECDSA signatures.
15251535
- version: v12.0.0
15261536
pr-url: https://github.com/nodejs/node/pull/26960
15271537
description: This function now supports RSA-PSS keys.
@@ -2991,6 +3001,12 @@ Throws an error if FIPS mode is not available.
29913001
### `crypto.sign(algorithm, data, key)`
29923002
<!-- YAML
29933003
added: v12.0.0
3004+
changes:
3005+
- version:
3006+
- v12.16.0
3007+
- v13.2.0
3008+
pr-url: https://github.com/nodejs/node/pull/29292
3009+
description: This function now supports IEEE-P1363 DSA and ECDSA signatures.
29943010
-->
29953011

29963012
* `algorithm` {string | null | undefined}
@@ -3047,6 +3063,12 @@ not introduce timing vulnerabilities.
30473063
### `crypto.verify(algorithm, data, key, signature)`
30483064
<!-- YAML
30493065
added: v12.0.0
3066+
changes:
3067+
- version:
3068+
- v12.16.0
3069+
- v13.2.0
3070+
pr-url: https://github.com/nodejs/node/pull/29292
3071+
description: This function now supports IEEE-P1363 DSA and ECDSA signatures.
30503072
-->
30513073

30523074
* `algorithm` {string | null | undefined}

0 commit comments

Comments
 (0)