Skip to content

Commit f4164bd

Browse files
jperssonrvagg
jpersson
authored andcommitted
doc: update links to use https where possible
PR-URL: #4054 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent 3169eed commit f4164bd

8 files changed

+25
-25
lines changed

doc/api/addons.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -871,4 +871,4 @@ Test in JavaScript by running:
871871
[download]: https://github.com/rvagg/node-addon-examples
872872
[node-gyp]: https://github.com/nodejs/node-gyp
873873
[v8 reference]: http://izs.me/v8-docs/main.html
874-
[Embedder's Guide]: http://code.google.com/apis/v8/embed.html
874+
[Embedder's Guide]: https://code.google.com/apis/v8/embed.html

doc/api/crypto.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ decipher, sign and verify methods.
1414

1515
The class used for working with signed public key & challenges. The most
1616
common usage for this series of functions is when dealing with the `<keygen>`
17-
element. http://www.openssl.org/docs/apps/spkac.html
17+
element. https://www.openssl.org/docs/apps/spkac.html
1818

1919
Returned by `crypto.Certificate`.
2020

@@ -464,7 +464,7 @@ dictionary with keys:
464464
(Certificate Revocation List)
465465
* `ciphers`: A string describing the ciphers to use or exclude.
466466
Consult
467-
<http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
467+
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
468468
for details on the format.
469469

470470
If no 'ca' details are given, then Node.js will use the default
@@ -797,10 +797,10 @@ See the reference for other recommendations and details.
797797
[buffer]: buffer.html
798798
[buffers]: buffer.html
799799
[Caveats]: #crypto_caveats
800-
[initialization vector]: http://en.wikipedia.org/wiki/Initialization_vector
800+
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
801801
[NIST SP 800-131A]: http://csrc.nist.gov/publications/nistpubs/800-131A/sp800-131A.pdf
802802
[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf
803-
[RFC 2412]: http://www.rfc-editor.org/rfc/rfc2412.txt
804-
[RFC 3526]: http://www.rfc-editor.org/rfc/rfc3526.txt
803+
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
804+
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
805805
[stream]: stream.html
806806
[streams]: stream.html

doc/api/errors.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ often a sign that a connected socket was not `.end()`'d appropriately.
482482
[below]: #errors_error_propagation_and_interception
483483
[domains]: domain.html
484484
[event emitter-based]: events.html#events_class_events_eventemitter
485-
[file descriptors]: http://en.wikipedia.org/wiki/File_descriptor
485+
[file descriptors]: https://en.wikipedia.org/wiki/File_descriptor
486486
[online]: http://man7.org/linux/man-pages/man3/errno.3.html
487487
[stream-based]: stream.html
488488
[syscall]: http://man7.org/linux/man-pages/man2/syscall.2.html

doc/api/https.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The following options from [`tls.connect()`][] can also be specified. However, a
167167
- `ca`: An authority certificate or array of authority certificates to check
168168
the remote host against.
169169
- `ciphers`: A string describing the ciphers to use or exclude. Consult
170-
<http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT> for
170+
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT> for
171171
details on the format.
172172
- `rejectUnauthorized`: If `true`, the server certificate is verified against
173173
the list of supplied CAs. An `'error'` event is emitted if verification
@@ -225,7 +225,7 @@ Example:
225225
[`http.Server`]: http.html#http_class_http_server
226226
[`https.Agent`]: #https_class_https_agent
227227
[`https.request()`]: #https_https_request_options_callback
228-
[`SSL_METHODS`]: http://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
228+
[`SSL_METHODS`]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
229229
[`tls.connect()`]: tls.html#tls_tls_connect_options_callback
230230
[`tls.createServer()`]: tls.html#tls_tls_createserver_options_secureconnectionlistener
231231
[`url.parse()`]: url.html#url_url_parse_urlstr_parsequerystring_slashesdenotehost

doc/api/punycode.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ Creates a string based on an array of numeric code point values.
6767
A string representing the current Punycode.js version number.
6868

6969
[Punycode.js]: https://mths.be/punycode
70-
[JavaScript uses UCS-2 internally]: http://mathiasbynens.be/notes/javascript-encoding
70+
[JavaScript uses UCS-2 internally]: https://mathiasbynens.be/notes/javascript-encoding

doc/api/tls.markdown

+11-11
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ Example:
425425
{ name: 'AES256-SHA', version: 'TLSv1/SSLv3' }
426426

427427
See SSL_CIPHER_get_name() and SSL_CIPHER_get_version() in
428-
http://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_CIPHERS for more
428+
https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_CIPHERS for more
429429
information.
430430

431431
### tlsSocket.getEphemeralKeyInfo()
@@ -680,7 +680,7 @@ dictionary with keys:
680680
(Certificate Revocation List)
681681
* `ciphers`: A string describing the ciphers to use or exclude.
682682
Consult
683-
<http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
683+
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
684684
for details on the format.
685685
* `honorCipherOrder` : When choosing a cipher, use the server's preferences
686686
instead of the client preferences. For further details see `tls` module
@@ -914,10 +914,10 @@ Example:
914914
console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]
915915

916916

917-
[OpenSSL cipher list format documentation]: http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
918-
[Chrome's 'modern cryptography' setting]: http://www.chromium.org/Home/chromium-security/education/tls#TOC-Deprecation-of-TLS-Features-Algorithms-in-Chrome
917+
[OpenSSL cipher list format documentation]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
918+
[Chrome's 'modern cryptography' setting]: https://www.chromium.org/Home/chromium-security/education/tls#TOC-Deprecation-of-TLS-Features-Algorithms-in-Chrome
919919
[specific attacks affecting larger AES key sizes]: https://www.schneier.com/blog/archives/2009/07/another_new_aes.html
920-
[BEAST attacks]: http://blog.ivanristic.com/2011/10/mitigating-the-beast-attack-on-tls.html
920+
[BEAST attacks]: https://blog.ivanristic.com/2011/10/mitigating-the-beast-attack-on-tls.html
921921
[crypto.getCurves()]: crypto.html#crypto_crypto_getcurves
922922
[tls.createServer]: #tls_tls_createserver_options_secureconnectionlistener
923923
[tls.createSecurePair]: #tls_tls_createsecurepair_context_isserver_requestcert_rejectunauthorized_options
@@ -929,15 +929,15 @@ Example:
929929
[`'secureConnection'`]: #tls_event_secureconnection
930930
[Perfect Forward Secrecy]: #tls_perfect_forward_secrecy
931931
[Stream]: stream.html#stream_stream
932-
[SSL_METHODS]: http://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
932+
[SSL_METHODS]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
933933
[tls.Server]: #tls_class_tls_server
934-
[SSL_CTX_set_timeout]: http://www.openssl.org/docs/ssl/SSL_CTX_set_timeout.html
935-
[RFC 4492]: http://www.rfc-editor.org/rfc/rfc4492.txt
936-
[Forward secrecy]: http://en.wikipedia.org/wiki/Perfect_forward_secrecy
934+
[SSL_CTX_set_timeout]: https://www.openssl.org/docs/ssl/SSL_CTX_set_timeout.html
935+
[RFC 4492]: https://www.rfc-editor.org/rfc/rfc4492.txt
936+
[Forward secrecy]: https://en.wikipedia.org/wiki/Perfect_forward_secrecy
937937
[DHE]: https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange
938938
[ECDHE]: https://en.wikipedia.org/wiki/Elliptic_curve_Diffie%E2%80%93Hellman
939-
[asn1.js]: http://npmjs.org/package/asn1.js
940-
[OCSP request]: http://en.wikipedia.org/wiki/OCSP_stapling
939+
[asn1.js]: https://npmjs.org/package/asn1.js
940+
[OCSP request]: https://en.wikipedia.org/wiki/OCSP_stapling
941941
[TLS recommendations]: https://wiki.mozilla.org/Security/Server_Side_TLS
942942
[TLS Session Tickets]: https://www.ietf.org/rfc/rfc5077.txt
943943
[getPeerCertificate]: #tls_tlssocket_getpeercertificate_detailed

doc/api/vm.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,6 @@ e.g. `(0,eval)('code')`. However, it also has the following additional options:
275275
- `timeout`: a number of milliseconds to execute `code` before terminating
276276
execution. If execution is terminated, an [`Error`][] will be thrown.
277277

278-
[indirect `eval` call]: http://es5.github.io/#x10.4.2
279-
[global object]: http://es5.github.io/#x15.1
278+
[indirect `eval` call]: https://es5.github.io/#x10.4.2
279+
[global object]: https://es5.github.io/#x15.1
280280
[`Error`]: errors.html#errors_class_error

doc/api/zlib.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,8 @@ Decompress a raw Buffer with Inflate.
356356

357357
Decompress a raw Buffer with Unzip.
358358

359-
[accept-encoding]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
360-
[content-encoding]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
359+
[accept-encoding]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
360+
[content-encoding]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
361361
[Memory Usage Tuning]: #zlib_memory_usage_tuning
362362
[zlib documentation]: http://zlib.net/manual.html#Constants
363363
[options]: #zlib_class_options

0 commit comments

Comments
 (0)