mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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.
This commit is contained in:
parent
b3b4dbef20
commit
2f21eb3a15
6 changed files with 1118 additions and 16 deletions
|
@ -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
|
||||
*/
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue