@@ -159,12 +159,12 @@ Useful for non-standard padding, e.g. using `0x0` instead of PKCS padding. You m
159159## crypto.createDecipher(algorithm, password)
160160
161161Creates and returns a decipher object, with the given algorithm and key.
162- This is the mirror of the [ createCipher()] ( #crypto.createCipher ) above.
162+ This is the mirror of the [ createCipher()] [ ] above.
163163
164164## crypto.createDecipheriv(algorithm, key, iv)
165165
166166Creates and returns a decipher object, with the given algorithm, key and iv.
167- This is the mirror of the [ createCipheriv()] ( #crypto.createCipheriv ) above.
167+ This is the mirror of the [ createCipheriv()] [ ] above.
168168
169169## Class: Decipher
170170
@@ -316,13 +316,13 @@ or `'base64'`. Defaults to `'binary'`.
316316
317317Creates a predefined Diffie-Hellman key exchange object.
318318The supported groups are: ` 'modp1' ` , ` 'modp2' ` , ` 'modp5' `
319- (defined in [ RFC 2412] ( http://www.rfc-editor.org/rfc/rfc2412.txt ) )
319+ (defined in [ RFC 2412] [ ] )
320320and ` 'modp14' ` , ` 'modp15' ` , ` 'modp16' ` , ` 'modp17' ` , ` 'modp18' `
321- (defined in [ RFC 3526] ( http://www.rfc-editor.org/rfc/rfc3526.txt ) ).
321+ (defined in [ RFC 3526] [ ] ).
322322The returned object mimics the interface of objects created by
323- [ crypto.createDiffieHellman()] ( #crypto.createDiffieHellman ) above, but
323+ [ crypto.createDiffieHellman()] [ ] above, but
324324will not allow to change the keys (with
325- [ diffieHellman.setPublicKey()] ( #diffieHellman.setPublicKey ) for example).
325+ [ diffieHellman.setPublicKey()] [ ] for example).
326326The advantage of using this routine is that the parties don't have to
327327generate nor exchange group modulus beforehand, saving both processor and
328328communication time.
@@ -365,3 +365,10 @@ Generates cryptographically strong pseudo-random data. Usage:
365365 } catch (ex) {
366366 // handle error
367367 }
368+
369+ [ createCipher() ] : #crypto_crypto_createcipher_algorithm_password
370+ [ createCipheriv() ] : #crypto_crypto_createcipheriv_algorithm_key_iv
371+ [ crypto.createDiffieHellman() ] : #crypto_crypto_creatediffiehellman_prime_encoding
372+ [ diffieHellman.setPublicKey() ] : #crypto_diffiehellman_setpublickey_public_key_encoding
373+ [ RFC 2412 ] : http://www.rfc-editor.org/rfc/rfc2412.txt
374+ [ RFC 3526 ] : http://www.rfc-editor.org/rfc/rfc3526.txt
0 commit comments