forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc: 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. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/[email protected]
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
* We then use fixed point Barrett reduction to compute a mod n over GF(2) | ||
* for n = CRC using POWER8 instructions. We use x = 32. | ||
* | ||
* http://en.wikipedia.org/wiki/Barrett_reduction | ||
* https://en.wikipedia.org/wiki/Barrett_reduction | ||
* | ||
* Copyright (C) 2015 Anton Blanchard <[email protected]>, IBM | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ | |
# Written by Andy Polyakov <[email protected]> for the OpenSSL | ||
# project. The module is, however, dual licensed under OpenSSL and | ||
# CRYPTOGAMS licenses depending on where you obtain it. For further | ||
# details see http://www.openssl.org/~appro/cryptogams/. | ||
# details see https://www.openssl.org/~appro/cryptogams/. | ||
# ==================================================================== | ||
# | ||
# This module implements support for AES instructions as per PowerISA | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
# Written by Andy Polyakov <[email protected]> for the OpenSSL | ||
# project. The module is, however, dual licensed under OpenSSL and | ||
# CRYPTOGAMS licenses depending on where you obtain it. For further | ||
# details see http://www.openssl.org/~appro/cryptogams/. | ||
# details see https://www.openssl.org/~appro/cryptogams/. | ||
# ==================================================================== | ||
# | ||
# GHASH for for PowerISA v2.07. | ||
|