Skip to content

Commit 758fadf

Browse files
silverwindrvagg
authored andcommitted
doc: update openssl.org hash links
The hash link format has changed from #HASH_LINK to #HASH-LINK. PR-URL: #6817 Reviewed-By: Roman Klauke <romankl@users.noreply.github.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 1067140 commit 758fadf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/api/crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,7 +1416,7 @@ See the reference for other recommendations and details.
14161416
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
14171417
[NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
14181418
[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf
1419-
[OpenSSL cipher list format]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
1419+
[OpenSSL cipher list format]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT
14201420
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/apps/spkac.html
14211421
[publicly trusted list of CAs]: https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt
14221422
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt

doc/api/https.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ The following options from [`tls.connect()`][] can also be specified. However, a
176176
certificates in PEM format. If this is omitted several well known "root"
177177
CAs will be used, like VeriSign. These are used to authorize connections.
178178
- `ciphers`: A string describing the ciphers to use or exclude. Consult
179-
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT> for
179+
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT> for
180180
details on the format.
181181
- `rejectUnauthorized`: If `true`, the server certificate is verified against
182182
the list of supplied CAs. An `'error'` event is emitted if verification
@@ -240,7 +240,7 @@ var req = https.request(options, (res) => {
240240
[`http.Server`]: http.html#http_class_http_server
241241
[`https.Agent`]: #https_class_https_agent
242242
[`https.request()`]: #https_https_request_options_callback
243-
[`SSL_METHODS`]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
243+
[`SSL_METHODS`]: https://www.openssl.org/docs/ssl/ssl.html#DEALING-WITH-PROTOCOL-METHODS
244244
[`tls.connect()`]: tls.html#tls_tls_connect_options_callback
245245
[`tls.createServer()`]: tls.html#tls_tls_createserver_options_secureconnectionlistener
246246
[`url.parse()`]: url.html#url_url_parse_urlstr_parsequerystring_slashesdenotehost

doc/api/tls.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ fields:
735735
(Certificate Revocation List).
736736
* `ciphers`: A string describing the ciphers to use or exclude.
737737
Consult
738-
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
738+
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>
739739
for details on the format.
740740
* `honorCipherOrder` : When choosing a cipher, use the server's preferences
741741
instead of the client preferences. For further details see `tls` module
@@ -998,7 +998,7 @@ console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]
998998
```
999999

10001000

1001-
[OpenSSL cipher list format documentation]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
1001+
[OpenSSL cipher list format documentation]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT
10021002
[Chrome's 'modern cryptography' setting]: https://www.chromium.org/Home/chromium-security/education/tls#TOC-Deprecation-of-TLS-Features-Algorithms-in-Chrome
10031003
[specific attacks affecting larger AES key sizes]: https://www.schneier.com/blog/archives/2009/07/another_new_aes.html
10041004
[BEAST attacks]: https://blog.ivanristic.com/2011/10/mitigating-the-beast-attack-on-tls.html
@@ -1013,7 +1013,7 @@ console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]
10131013
[`'secureConnection'`]: #tls_event_secureconnection
10141014
[Perfect Forward Secrecy]: #tls_perfect_forward_secrecy
10151015
[Stream]: stream.html#stream_stream
1016-
[SSL_METHODS]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
1016+
[SSL_METHODS]: https://www.openssl.org/docs/ssl/ssl.html#DEALING-WITH-PROTOCOL-METHODS
10171017
[tls.Server]: #tls_class_tls_server
10181018
[SSL_CTX_set_timeout]: https://www.openssl.org/docs/ssl/SSL_CTX_set_timeout.html
10191019
[RFC 4492]: https://www.rfc-editor.org/rfc/rfc4492.txt

0 commit comments

Comments
 (0)