diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-15 13:45:49 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-15 13:45:49 (GMT) |
commit | 327798ca4a93863c2d46968fcfc326cbfedd4b7a (patch) | |
tree | 639bf8c5cb32eae67df24a5da98b5add6cb7f875 /Doc/lib/libzlib.tex | |
parent | a5f73f9bab445608fcf3586ff9c20675c3106d2c (diff) | |
download | cpython-327798ca4a93863c2d46968fcfc326cbfedd4b7a.zip cpython-327798ca4a93863c2d46968fcfc326cbfedd4b7a.tar.gz cpython-327798ca4a93863c2d46968fcfc326cbfedd4b7a.tar.bz2 |
Added notes to clarify that binascii.crc32(), zlib.crc32(), and
zlib.adler32() are not suitable as general hash functions.
Diffstat (limited to 'Doc/lib/libzlib.tex')
-rw-r--r-- | Doc/lib/libzlib.tex | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Doc/lib/libzlib.tex b/Doc/lib/libzlib.tex index c78523b..e384b1f 100644 --- a/Doc/lib/libzlib.tex +++ b/Doc/lib/libzlib.tex @@ -29,7 +29,9 @@ The available exception and functions in this module are: used. This allows computing a running checksum over the concatenation of several input strings. The algorithm is not cryptographically strong, and should not be used for - authentication or digital signatures. + authentication or digital signatures. Since the algorithm is + designed for use as a checksum algorithm, it is not suitable for + use as a general hash algorithm. \end{funcdesc} \begin{funcdesc}{compress}{string\optional{, level}} @@ -58,7 +60,9 @@ The available exception and functions in this module are: checksum; otherwise, a fixed default value is used. This allows computing a running checksum over the concatenation of several input strings. The algorithm is not cryptographically strong, and - should not be used for authentication or digital signatures. + should not be used for authentication or digital signatures. Since + the algorithm is designed for use as a checksum algorithm, it is not + suitable for use as a general hash algorithm. \end{funcdesc} \begin{funcdesc}{decompress}{string\optional{, wbits\optional{, bufsize}}} |