summaryrefslogtreecommitdiff
path: root/Modules/sha512module.c
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2007-09-09 06:44:34 +0000
committerGregory P. Smith <greg@mad-scientist.com>2007-09-09 06:44:34 +0000
commit0398864e839facfe71bec9f1e24d19202cc6b6d7 (patch)
treeb4803aaa837d1cabef1b187c9e12482441d7c024 /Modules/sha512module.c
parentaa702790176a8220071b27d0a5d1af7257515762 (diff)
downloadcpython-0398864e839facfe71bec9f1e24d19202cc6b6d7.tar.gz
Adds stand alone _md5 and _sha1 modules for use by hashlib on systems
when the OpenSSL library is either not present or not found by setup.py. These are derived from the public domain libtomcrypt (libtom.org) just like the existing sha256 and sha512 modules.
Diffstat (limited to 'Modules/sha512module.c')
-rw-r--r--Modules/sha512module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 1d3a70b9df..8b33bb0183 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -9,7 +9,7 @@
Greg Stein (gstein@lyra.org)
Trevor Perrin (trevp@trevp.net)
- Copyright (C) 2005 Gregory P. Smith (greg@electricrain.com)
+ Copyright (C) 2005-2007 Gregory P. Smith (greg@krypto.org)
Licensed to PSF under a Contributor Agreement.
*/
@@ -113,7 +113,7 @@ static void SHAcopy(SHAobject *src, SHAobject *dest)
* The library is free for all purposes without any express
* gurantee it works.
*
- * Tom St Denis, tomstdenis@iahu.ca, http://libtomcrypt.org
+ * Tom St Denis, tomstdenis@iahu.ca, http://libtom.org
*/