summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/crypto.md6
-rw-r--r--tools/doc/type-parser.js1
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 5ac8b09820..ba1582bd78 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -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
diff --git a/tools/doc/type-parser.js b/tools/doc/type-parser.js
index 35039b68d9..4c3ec0503e 100644
--- a/tools/doc/type-parser.js
+++ b/tools/doc/type-parser.js
@@ -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',