diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-09-09 06:44:34 +0000 |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-09-09 06:44:34 +0000 |
commit | 2f21eb3a153ee09e333300a837be86a37cd22d28 (patch) | |
tree | 3c4083816e9e35bff9798666344c72cadaf585a2 /Modules/sha256module.c | |
parent | Cleanup test_thread. CDB (Concurrent Database) support in BerkeleyDB is only (diff) | |
download | cpython-2f21eb3a153ee09e333300a837be86a37cd22d28.tar.gz cpython-2f21eb3a153ee09e333300a837be86a37cd22d28.tar.bz2 cpython-2f21eb3a153ee09e333300a837be86a37cd22d28.zip |
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/sha256module.c')
-rw-r--r-- | Modules/sha256module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c index 27c4b19b9c2..da31d18d1f2 100644 --- a/Modules/sha256module.c +++ b/Modules/sha256module.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. */ @@ -103,7 +103,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 */ |