diff options
author | Alexander A. Klimov <grandmaster@al2klimov.de> | 2020-08-11 18:34:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-08-12 10:58:00 -0700 |
commit | d89775fc929c5a1d91ed518a71b456da0865e5ff (patch) | |
tree | 6627de1e9aa4066b61bf01ba843f50782ee80b43 /lib/crc64.c | |
parent | 3adf3bae0d612357da516d39e1584f1547eb6e86 (diff) | |
download | linux-d89775fc929c5a1d91ed518a71b456da0865e5ff.tar.gz linux-d89775fc929c5a1d91ed518a71b456da0865e5ff.tar.bz2 linux-d89775fc929c5a1d91ed518a71b456da0865e5ff.zip |
lib/: replace HTTP links with HTTPS ones
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>
Diffstat (limited to 'lib/crc64.c')
-rw-r--r-- | lib/crc64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crc64.c b/lib/crc64.c index f8928ce28280..47cfa054827f 100644 --- a/lib/crc64.c +++ b/lib/crc64.c @@ -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 |