aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/cryptographic-hashes.rst
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-12-15 20:13:02 -0800
committerDonald Stufft <donald@stufft.io>2013-12-15 20:13:02 -0800
commitffb7726fa3042e66e8011fbd17a8b6f83f0c8110 (patch)
tree0535ae742bacf071a19f74fc487a7d1b66cb092f /docs/hazmat/primitives/cryptographic-hashes.rst
parenta14c0fe87e4fbc44f566df0378f5af5a18822cb8 (diff)
parent41e5ab64e9526c1e759034bafb3d75c1492ff54d (diff)
downloadcryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.tar.gz
cryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.tar.bz2
cryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.zip
Merge pull request #308 from alex/rename-bindings
Renamed bindings to backends
Diffstat (limited to 'docs/hazmat/primitives/cryptographic-hashes.rst')
-rw-r--r--docs/hazmat/primitives/cryptographic-hashes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst
index 312d7e69..90ca198a 100644
--- a/docs/hazmat/primitives/cryptographic-hashes.rst
+++ b/docs/hazmat/primitives/cryptographic-hashes.rst
@@ -20,7 +20,7 @@ Message Digests
.. doctest::
- >>> from cryptography.hazmat.bindings import default_backend
+ >>> from cryptography.hazmat.backends import default_backend
>>> from cryptography.hazmat.primitives import hashes
>>> digest = hashes.Hash(hashes.SHA256(), backend=default_backend())
>>> digest.update(b"abc")
@@ -39,7 +39,7 @@ Message Digests
provider such as those described in
:ref:`below <cryptographic-hash-algorithms>`.
:param backend: A
- :class:`~cryptography.hazmat.bindings.interfaces.HashBackend`
+ :class:`~cryptography.hazmat.backends.interfaces.HashBackend`
provider.
.. method:: update(data)