doc: fix return type for crypto.createDiffieHellmanGroup()

PR-URL: https://github.com/nodejs/node/pull/29696
Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
exoego 2019-09-25 05:27:37 +09:00 committed by Rich Trott
parent d742535184
commit 03b7a5a4bf
2 changed files with 4 additions and 3 deletions

View File

@ -1824,7 +1824,7 @@ added: v0.9.3
-->
* `name` {string}
* Returns: {DiffieHellman}
* Returns: {DiffieHellmanGroup}
An alias for [`crypto.getDiffieHellman()`][]
@ -2194,9 +2194,9 @@ added: v0.7.5
-->
* `groupName` {string}
* Returns: {DiffieHellman}
* Returns: {DiffieHellmanGroup}
Creates a predefined `DiffieHellman` key exchange object. The
Creates a predefined `DiffieHellmanGroup` key exchange object. The
supported groups are: `'modp1'`, `'modp2'`, `'modp5'` (defined in
[RFC 2412][], but see [Caveats][]) and `'modp14'`, `'modp15'`,
`'modp16'`, `'modp17'`, `'modp18'` (defined in [RFC 3526][]). The

View File

@ -52,6 +52,7 @@ const customTypesMap = {
'Cipher': 'crypto.html#crypto_class_cipher',
'Decipher': 'crypto.html#crypto_class_decipher',
'DiffieHellman': 'crypto.html#crypto_class_diffiehellman',
'DiffieHellmanGroup': 'crypto.html#crypto_class_diffiehellmangroup',
'ECDH': 'crypto.html#crypto_class_ecdh',
'Hash': 'crypto.html#crypto_class_hash',
'Hmac': 'crypto.html#crypto_class_hmac',