[Python-checkins] bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)

miss-islington webhook-mailer at python.org
Fri Feb 12 05:34:15 EST 2021


https://github.com/python/cpython/commit/5ec7d535581bc99918e032891167a96abd224ed6
commit: 5ec7d535581bc99918e032891167a96abd224ed6
branch: master
author: Erlend Egeberg Aasland <erlend.aasland at innova.no>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-02-12T02:34:11-08:00
summary:

bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)



Automerge-Triggered-By: GH:tiran

files:
M Modules/md5module.c
M Modules/sha1module.c
M Modules/sha256module.c
M Modules/sha512module.c

diff --git a/Modules/md5module.c b/Modules/md5module.c
index 1c401e884389f..b2e65a0a5ffd2 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 at gmail.com, http://libtom.org
+ * Tom St Denis, tomstdenis at 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 5209857041d90..7126db93b1a3f 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 at gmail.com, http://libtom.org
+ * Tom St Denis, tomstdenis at 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 6b8bd8f1d27fb..b90e5df782674 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -106,7 +106,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 at iahu.ca, http://libtom.org
+ * Tom St Denis, tomstdenis at iahu.ca, https://www.libtom.net
  */
 
 
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 3fd9fa4c8d16f..062343e71ff14 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 at iahu.ca, http://libtom.org
+ * Tom St Denis, tomstdenis at iahu.ca, https://www.libtom.net
  */
 
 



More information about the Python-checkins mailing list