| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c345a10 commit c676129
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -55,4 +55,4 @@ | |||
| 55 | 55 | <div class="line"></div> | |
| 56 | 56 | ||
| 57 | 57 | * [GitHub Repo & Issue Tracker](https://github.com/nodejs/node) | |
| 58 | - * [Mailing List](http://groups.google.com/group/nodejs) | ||
| 58 | + * [Mailing List](https://groups.google.com/group/nodejs) | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2396,7 +2396,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. | |||
| 2396 | 2396 | [`verify.verify()`]: #crypto_verify_verify_object_signature_signatureformat | |
| 2397 | 2397 | [Caveats]: #crypto_support_for_weak_or_compromised_algorithms | |
| 2398 | 2398 | [Crypto Constants]: #crypto_crypto_constants_1 | |
| 2399 | - [HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element | ||
| 2399 | + [HTML5's `keygen` element]: https://www.w3.org/TR/html5/forms.html#the-keygen-element | ||
| 2400 | 2400 | [NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf | |
| 2401 | 2401 | [NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf | |
| 2402 | 2402 | [Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1013,7 +1013,7 @@ A key is *required* for ciphers that make use of certificates. Either `key` or | |||
| 1013 | 1013 | ||
| 1014 | 1014 | If the 'ca' option is not given, then Node.js will use the default | |
| 1015 | 1015 | publicly trusted list of CAs as given in | |
| 1016 | - <http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt>. | ||
| 1016 | + <https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt>. | ||
| 1017 | 1017 | ||
| 1018 | 1018 | ||
| 1019 | 1019 | ## tls.createServer([options][, secureConnectionListener]) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -110,7 +110,7 @@ http.createServer((request, response) => { | |||
| 110 | 110 | } | |
| 111 | 111 | ||
| 112 | 112 | // Note: This is not a conformant accept-encoding parser. | |
| 113 | - // See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3 | ||
| 113 | + // See https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3 | ||
| 114 | 114 | if (/\bdeflate\b/.test(acceptEncoding)) { | |
| 115 | 115 | response.writeHead(200, { 'Content-Encoding': 'deflate' }); | |
| 116 | 116 | raw.pipe(zlib.createDeflate()).pipe(response); | |
@@ -235,7 +235,7 @@ All of the constants defined in `zlib.h` are also defined on | |||
| 235 | 235 | `require('zlib').constants`. In the normal course of operations, it will not be | |
| 236 | 236 | necessary to use these constants. They are documented so that their presence is | |
| 237 | 237 | not surprising. This section is taken almost directly from the | |
| 238 | - [zlib documentation][]. See <http://zlib.net/manual.html#Constants> for more | ||
| 238 | + [zlib documentation][]. See <https://zlib.net/manual.html#Constants> for more | ||
| 239 | 239 | details. | |
| 240 | 240 | ||
| 241 | 241 | *Note*: Previously, the constants were available directly from | |
@@ -313,7 +313,7 @@ ignored by the decompression classes. | |||
| 313 | 313 | * `info` {boolean} (If `true`, returns an object with `buffer` and `engine`) | |
| 314 | 314 | ||
| 315 | 315 | See the description of `deflateInit2` and `inflateInit2` at | |
| 316 | - <http://zlib.net/manual.html#Advanced> for more information on these. | ||
| 316 | + <https://zlib.net/manual.html#Advanced> for more information on these. | ||
| 317 | 317 | ||
| 318 | 318 | ## Class: zlib.Deflate | |
| 319 | 319 | <!-- YAML | |
@@ -723,4 +723,4 @@ Decompress a chunk of data with [Unzip][]. | |||
| 723 | 723 | [Unzip]: #zlib_class_zlib_unzip | |
| 724 | 724 | [`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size | |
| 725 | 725 | [options]: #zlib_class_options | |
| 726 | - [zlib documentation]: http://zlib.net/manual.html#Constants | ||
| 726 | + [zlib documentation]: https://zlib.net/manual.html#Constants | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments