summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-02-12 11:18:38 (GMT)
committerGitHub <noreply@github.com>2021-02-12 11:18:38 (GMT)
commitdf2197f2ec410817299f671e353c2fb0a3d61cbd (patch)
tree90ec0e16de4b7b3dc5e4770b7e22330329be3c33
parent68d6bc798b34eccabdfbf94e563273759c4cef1f (diff)
downloadcpython-df2197f2ec410817299f671e353c2fb0a3d61cbd.zip
cpython-df2197f2ec410817299f671e353c2fb0a3d61cbd.tar.gz
cpython-df2197f2ec410817299f671e353c2fb0a3d61cbd.tar.bz2
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)
Automerge-Triggered-By: GH:tiran (cherry picked from commit 5ec7d535581bc99918e032891167a96abd224ed6) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
-rw-r--r--Modules/md5module.c2
-rw-r--r--Modules/sha1module.c2
-rw-r--r--Modules/sha256module.c2
-rw-r--r--Modules/sha512module.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c
index e4d9db4..6ed84337 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -74,7 +74,7 @@ typedef struct {
* The library is free for all purposes without any express
* guarantee it works.
*
- * Tom St Denis, tomstdenis@gmail.com, http://libtom.org
+ * Tom St Denis, tomstdenis@gmail.com, https://www.libtom.net
*/
/* rotate the hard way (platform optimizations could be done) */
diff --git a/Modules/sha1module.c b/Modules/sha1module.c
index b0656d8..9c75cc9 100644
--- a/Modules/sha1module.c
+++ b/Modules/sha1module.c
@@ -74,7 +74,7 @@ typedef struct {
* The library is free for all purposes without any express
* guarantee it works.
*
- * Tom St Denis, tomstdenis@gmail.com, http://libtom.org
+ * Tom St Denis, tomstdenis@gmail.com, https://www.libtom.net
*/
/* rotate the hard way (platform optimizations could be done) */
diff --git a/Modules/sha256module.c b/Modules/sha256module.c
index 8edb1d5..9b885c7 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -93,7 +93,7 @@ static void SHAcopy(SHAobject *src, SHAobject *dest)
* The library is free for all purposes without any express
* guarantee it works.
*
- * Tom St Denis, tomstdenis@iahu.ca, http://libtom.org
+ * Tom St Denis, tomstdenis@iahu.ca, https://www.libtom.net
*/
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 561ef8e..831160c 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -94,7 +94,7 @@ static void SHAcopy(SHAobject *src, SHAobject *dest)
* The library is free for all purposes without any express
* guarantee it works.
*
- * Tom St Denis, tomstdenis@iahu.ca, http://libtom.org
+ * Tom St Denis, tomstdenis@iahu.ca, https://www.libtom.net
*/