summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-02-14 06:53:10 -0800
committerGitHub <noreply@github.com>2021-02-14 23:53:10 +0900
commit7777ae2ff7ba04ad20424db4efcc67246ff27b95 (patch)
tree88f923c5b13418e1ada3c36acbfb682228fdfde6
parentbpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505) (diff)
downloadcpython-7777ae2ff7ba04ad20424db4efcc67246ff27b95.tar.gz
cpython-7777ae2ff7ba04ad20424db4efcc67246ff27b95.tar.bz2
cpython-7777ae2ff7ba04ad20424db4efcc67246ff27b95.zip
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507) (GH-24516)
Automerge-Triggered-By: GH:tiran (cherry picked from commit 5ec7d535581bc99918e032891167a96abd224ed6) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> 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 c2ebaaf61f9..64fab8081b5 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 ce2ad267e77..4a8dbd8539b 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 b8d6c4cf800..a1c8b1a3dfb 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -102,7 +102,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 98b97917f4c..4167fd391cc 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -111,7 +111,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
*/