aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/cryptographic-hashes.rst
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-11-08 12:02:44 -0800
committerDonald Stufft <donald@stufft.io>2013-11-08 12:02:44 -0800
commit57c5fa6b889763082d614ae1d65ebded214f1f73 (patch)
tree3cd1617b1a64e335a41c278923b44cbbbe37030a /docs/hazmat/primitives/cryptographic-hashes.rst
parent635b542ded9ede772a2ca907e8bb5349ded333bd (diff)
parentab5f0116a2fc906b854b0593675492ec5e406a3d (diff)
downloadcryptography-57c5fa6b889763082d614ae1d65ebded214f1f73.tar.gz
cryptography-57c5fa6b889763082d614ae1d65ebded214f1f73.tar.bz2
cryptography-57c5fa6b889763082d614ae1d65ebded214f1f73.zip
Merge pull request #236 from alex/safer-docs
Be more and more explicit about how to do things correctly
Diffstat (limited to 'docs/hazmat/primitives/cryptographic-hashes.rst')
-rw-r--r--docs/hazmat/primitives/cryptographic-hashes.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst
index 76ca20c0..20fa23cf 100644
--- a/docs/hazmat/primitives/cryptographic-hashes.rst
+++ b/docs/hazmat/primitives/cryptographic-hashes.rst
@@ -12,9 +12,9 @@ Message Digests
results (with a high probability) in different digests.
This is an implementation of
- :class:`cryptography.hazmat.primitives.interfaces.HashContext` meant to
+ :class:`~cryptography.hazmat.primitives.interfaces.HashContext` meant to
be used with
- :class:`cryptography.hazmat.primitives.interfaces.HashAlgorithm`
+ :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
implementations to provide an incremental interface to calculating
various message digests.
@@ -102,7 +102,8 @@ MD5
.. warning::
MD5 is a deprecated hash algorithm that has practical known collision
- attacks. You are strongly discouraged from using it.
+ attacks. You are strongly discouraged from using it. Existing applications
+ should strongly consider moving away.
.. class:: MD5()