forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Acked-by: Coly Li <[email protected]> [crc64.c] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
13 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
*implementation for lzma. | ||
*Copyright (C) 2006 Aurelien Jacobs < [email protected] > | ||
* | ||
*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 < [email protected] > | ||
* | ||
*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 < [email protected] > | ||
* | ||
* 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 | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* CRC32 using the polynomial from IEEE-802.3 | ||
* | ||
* Authors: Lasse Collin <[email protected]> | ||
* 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Branch/Call/Jump (BCJ) filter decoders | ||
* | ||
* Authors: Lasse Collin <[email protected]> | ||
* 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* LZMA2 decoder | ||
* | ||
* Authors: Lasse Collin <[email protected]> | ||
* 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* LZMA2 definitions | ||
* | ||
* Authors: Lasse Collin <[email protected]> | ||
* 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters