From 6192315cf3d2651b540ae2a3a86e97e6ea9002d4 Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Sat, 20 Feb 2021 21:02:31 +0100 Subject: [PATCH] doc: remove generated from dsaEncoding description remove term `generated` from `dsaEncoding` parameter's description - the parameter is used to specify the format of the signature, function dictates the signature 'action' PR-URL: https://github.com/nodejs/node/pull/37459 Fixes: https://github.com/nodejs/node/issues/37454 Reviewed-By: Rich Trott Reviewed-By: James M Snell --- doc/api/crypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 95a3791764d355..2e0f18b8a84e74 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1672,7 +1672,7 @@ If `object` is not a [`KeyObject`][], this function behaves as if object, the following additional properties can be passed: * `dsaEncoding` {string} For DSA and ECDSA, this option specifies the - format of the generated signature. It can be one of the following: + format of the signature. It can be one of the following: * `'der'` (default): DER-encoded ASN.1 signature structure encoding `(r, s)`. * `'ieee-p1363'`: Signature format `r || s` as proposed in IEEE-P1363. * `padding` {integer} Optional padding value for RSA, one of the following: @@ -3916,7 +3916,7 @@ passed to [`crypto.createPublicKey()`][]. If it is an object, the following additional properties can be passed: * `dsaEncoding` {string} For DSA and ECDSA, this option specifies the - format of the generated signature. It can be one of the following: + format of the signature. It can be one of the following: * `'der'` (default): DER-encoded ASN.1 signature structure encoding `(r, s)`. * `'ieee-p1363'`: Signature format `r || s` as proposed in IEEE-P1363. * `padding` {integer} Optional padding value for RSA, one of the following: