diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 16:26:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 16:26:36 (GMT) |
commit | 6e94a3098e0e69a433e92c3a9e9270a54d820fec (patch) | |
tree | 9255b4f638d9971f2e8746267ead4c5544f2b0a7 | |
parent | 4a6cf6c9d15a7944860349c87cdf4bbfcc4b9910 (diff) | |
download | cpython-6e94a3098e0e69a433e92c3a9e9270a54d820fec.zip cpython-6e94a3098e0e69a433e92c3a9e9270a54d820fec.tar.gz cpython-6e94a3098e0e69a433e92c3a9e9270a54d820fec.tar.bz2 |
The "FAQ" link at the end was changed to a Wikipedia link; reflect that.
-rw-r--r-- | Doc/library/hashlib.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index edc7d54..49fedec 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -23,12 +23,14 @@ algorithm (defined in Internet :rfc:`1321`). The terms "secure hash" and digests. The modern term is secure hash. .. note:: - If you want the adler32 or crc32 hash functions they are available in + + If you want the adler32 or crc32 hash functions, they are available in the :mod:`zlib` module. .. warning:: - Some algorithms have known hash collision weaknesses, see the FAQ at the end. + Some algorithms have known hash collision weaknesses, refer to the "See + also" section at the end. There is one constructor method named for each type of :dfn:`hash`. All return a hash object with the same simple interface. For example: use :func:`sha1` to |