diff options
Diffstat (limited to 'Lib/hashlib.py')
| -rw-r--r-- | Lib/hashlib.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/hashlib.py b/Lib/hashlib.py index 78563b2..a9068a5 100644 --- a/Lib/hashlib.py +++ b/Lib/hashlib.py @@ -1,6 +1,6 @@ # $Id$ # -# Copyright (C) 2005 Gregory P. Smith (greg@electricrain.com) +# Copyright (C) 2005 Gregory P. Smith (greg@krypto.org) # Licensed to PSF under a Contributor Agreement. # @@ -18,6 +18,9 @@ md5(), sha1(), sha224(), sha256(), sha384(), and sha512() More algorithms may be available on your platform but the above are guaranteed to exist. +NOTE: If you want the adler32 or crc32 hash functions they are available in +the zlib module. + Choose your hash function wisely. Some have known collision weaknesses. sha384 and sha512 will be slow on 32 bit platforms. |
