lib/: replace HTTP links with HTTPS ones
authorAlexander A. Klimov <grandmaster@al2klimov.de>
Wed, 12 Aug 2020 01:34:50 +0000 (18:34 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 12 Aug 2020 17:58:00 +0000 (10:58 -0700)
Rationale:
Reduces attack surface on kernel devs opening the links for MITM
as HTTPS traffic is much harder to manipulate.

Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Coly Li <colyli@suse.de> [crc64.c]
Link: http://lkml.kernel.org/r/20200726112154.16510-1-grandmaster@al2klimov.de
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 files changed:
lib/Kconfig.debug
lib/crc64.c
lib/decompress_bunzip2.c
lib/decompress_unlzma.c
lib/math/rational.c
lib/rbtree.c
lib/ts_bm.c
lib/xxhash.c
lib/xz/xz_crc32.c
lib/xz/xz_dec_bcj.c
lib/xz/xz_dec_lzma2.c
lib/xz/xz_lzma2.h
lib/xz/xz_stream.h

index 32300eb79d463ea68001898626a1706b49b4d1d0..5c5fbcb34af49f9068c60d2ff3937b13d07fa8c1 100644 (file)
@@ -2215,7 +2215,7 @@ config LIST_KUNIT_TEST
          and associated macros.
 
          KUnit tests run during boot and output the results to the debug log
-         in TAP format (http://testanything.org/). Only useful for kernel devs
+         in TAP format (https://testanything.org/). Only useful for kernel devs
          running the KUnit test harness, and not intended for inclusion into a
          production build.
 
index f8928ce282808cc02179c8d155f3b33948f7cc71..47cfa054827f3df027873dae9e7eb37c13ae167c 100644 (file)
@@ -4,7 +4,7 @@
  *
  * This is a basic crc64 implementation following ECMA-182 specification,
  * which can be found from,
- * http://www.ecma-international.org/publications/standards/Ecma-182.htm
+ * https://www.ecma-international.org/publications/standards/Ecma-182.htm
  *
  * Dr. Ross N. Williams has a great document to introduce the idea of CRC
  * algorithm, here the CRC64 code is also inspired by the table-driven
index 7c4932eed748165b758d1f99b19a8d56cb25540f..f9628f3924ce13b6365191b64c70f5dafe96434b 100644 (file)
@@ -34,7 +34,7 @@
                Phone (337) 232-1234 or 1-800-738-2226
                Fax   (337) 232-1297
 
-               http://www.hospiceacadiana.com/
+               https://www.hospiceacadiana.com/
 
        Manuel
  */
index ed7a1fd819f2fbc86b3ad0f238fce01739a8e07f..1cf409ef8d0400f5d8cddeb8cfe9b36f4398f2d3 100644 (file)
@@ -8,7 +8,7 @@
  *implementation for lzma.
  *Copyright (C) 2006  Aurelien Jacobs < aurel@gnuage.org >
  *
- *Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
+ *Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/)
  *Copyright (C) 1999-2005  Igor Pavlov
  *
  *Copyrights of the parts, see headers below.
@@ -56,7 +56,7 @@ static long long INIT read_int(unsigned char *ptr, int size)
 /* Small range coder implementation for lzma.
  *Copyright (C) 2006  Aurelien Jacobs < aurel@gnuage.org >
  *
- *Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
+ *Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/)
  *Copyright (c) 1999-2005  Igor Pavlov
  */
 
@@ -213,7 +213,7 @@ rc_bit_tree_decode(struct rc *rc, uint16_t *p, int num_levels, int *symbol)
  * Small lzma deflate implementation.
  * Copyright (C) 2006  Aurelien Jacobs < aurel@gnuage.org >
  *
- * Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
+ * Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/)
  * Copyright (C) 1999-2005  Igor Pavlov
  */
 
index 31fb27db2deb56d7d77c78130338344bf2dfcc78..df75c88096933cd0cf79ca2327405aa2de9b8a9d 100644 (file)
@@ -27,7 +27,7 @@
  * with the fractional part size described in given_denominator.
  *
  * for theoretical background, see:
- * http://en.wikipedia.org/wiki/Continued_fraction
+ * https://en.wikipedia.org/wiki/Continued_fraction
  */
 
 void rational_best_approximation(
index 8545872e61db9880bf2112ed7561f0cd5b7d8e54..c4ac5c2421f255c4c60954c45ee567f77403cffc 100644 (file)
@@ -13,7 +13,7 @@
 #include <linux/export.h>
 
 /*
- * red-black trees properties:  http://en.wikipedia.org/wiki/Rbtree
+ * red-black trees properties:  https://en.wikipedia.org/wiki/Rbtree
  *
  *  1) A node is either red or black
  *  2) The root is black
index 277cb4417ac27a77b89494803c3b1705b4e028df..4cf250031f0f0a9abd3ea44f814bfec5e5392fd4 100644 (file)
@@ -11,7 +11,7 @@
  *   [1] A Fast String Searching Algorithm, R.S. Boyer and Moore.
  *       Communications of the Association for Computing Machinery, 
  *       20(10), 1977, pp. 762-772.
- *       http://www.cs.utexas.edu/users/moore/publications/fstrpos.pdf
+ *       https://www.cs.utexas.edu/users/moore/publications/fstrpos.pdf
  *
  *   [2] Handbook of Exact String Matching Algorithms, Thierry Lecroq, 2004
  *       http://www-igm.univ-mlv.fr/~lecroq/string/string.pdf
index aa61e2a3802f0a69061fcf93f0b2f8523e9b4448..d5bb9ff106078d8e258c466dba1ff072b90543ac 100644 (file)
@@ -34,7 +34,7 @@
  * ("BSD").
  *
  * You can contact the author at:
- * - xxHash homepage: http://cyan4973.github.io/xxHash/
+ * - xxHash homepage: https://cyan4973.github.io/xxHash/
  * - xxHash source repository: https://github.com/Cyan4973/xxHash
  */
 
index 912aae5fa09e1763e00c7d1221243eb5c6d705e8..88a2c35e1b5971621de1d3aa26cbae303c64100a 100644 (file)
@@ -2,7 +2,7 @@
  * CRC32 using the polynomial from IEEE-802.3
  *
  * Authors: Lasse Collin <lasse.collin@tukaani.org>
- *          Igor Pavlov <http://7-zip.org/>
+ *          Igor Pavlov <https://7-zip.org/>
  *
  * This file has been put into the public domain.
  * You can do whatever you want with this file.
index a768e6d28bbb64f34f85d5d61156e99b4f890d57..72ddac6ef2ec9636ea2c454459215b14bb3cfb65 100644 (file)
@@ -2,7 +2,7 @@
  * Branch/Call/Jump (BCJ) filter decoders
  *
  * Authors: Lasse Collin <lasse.collin@tukaani.org>
- *          Igor Pavlov <http://7-zip.org/>
+ *          Igor Pavlov <https://7-zip.org/>
  *
  * This file has been put into the public domain.
  * You can do whatever you want with this file.
index 156f26fdc4c91b6e502b8bee69b84e811911cac6..9f336bc07ed610f6944e6617439dd7fd0e51c9e0 100644 (file)
@@ -2,7 +2,7 @@
  * LZMA2 decoder
  *
  * Authors: Lasse Collin <lasse.collin@tukaani.org>
- *          Igor Pavlov <http://7-zip.org/>
+ *          Igor Pavlov <https://7-zip.org/>
  *
  * This file has been put into the public domain.
  * You can do whatever you want with this file.
index 071d67bee9f5d07e01ab7c0f5dd94eb9c8d722b1..92d852d4f87a4a2535e3a893eb646b17b114aebb 100644 (file)
@@ -2,7 +2,7 @@
  * LZMA2 definitions
  *
  * Authors: Lasse Collin <lasse.collin@tukaani.org>
- *          Igor Pavlov <http://7-zip.org/>
+ *          Igor Pavlov <https://7-zip.org/>
  *
  * This file has been put into the public domain.
  * You can do whatever you want with this file.
index 66cb5a7055ec83298de08e625902e1e229c9ce42..430bb3a0d19506304301c4137c538abeffe0d605 100644 (file)
@@ -19,7 +19,7 @@
 
 /*
  * See the .xz file format specification at
- * http://tukaani.org/xz/xz-file-format.txt
+ * https://tukaani.org/xz/xz-file-format.txt
  * to understand the container format.
  */