aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/cryptographic-hashes.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-08 10:34:00 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-08 10:34:00 -0800
commitab5f0116a2fc906b854b0593675492ec5e406a3d (patch)
tree3cd1617b1a64e335a41c278923b44cbbbe37030a /docs/hazmat/primitives/cryptographic-hashes.rst
parent635b542ded9ede772a2ca907e8bb5349ded333bd (diff)
downloadcryptography-ab5f0116a2fc906b854b0593675492ec5e406a3d.tar.gz
cryptography-ab5f0116a2fc906b854b0593675492ec5e406a3d.tar.bz2
cryptography-ab5f0116a2fc906b854b0593675492ec5e406a3d.zip
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()