aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-16 08:03:21 -0430
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-16 08:03:21 -0430
commite2083365826c231f0a11efb7555280b4a1579a9e (patch)
tree8efa000377e25dc9b99fb77dcc03b7ba663395ae /docs/hazmat
parent3fb221f1fb02ffed7a558bd06ba41bb75c329fc5 (diff)
parentb018dbc6a3a5cb0c4697f8623ddb021cebc27330 (diff)
downloadcryptography-e2083365826c231f0a11efb7555280b4a1579a9e.tar.gz
cryptography-e2083365826c231f0a11efb7555280b4a1579a9e.tar.bz2
cryptography-e2083365826c231f0a11efb7555280b4a1579a9e.zip
Merge pull request #804 from Ayrx/add-backend-check-to-hashes
Added backend check to hash primitives
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/cryptographic-hashes.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst
index 627ca7bd..b7eee2f5 100644
--- a/docs/hazmat/primitives/cryptographic-hashes.rst
+++ b/docs/hazmat/primitives/cryptographic-hashes.rst
@@ -45,6 +45,10 @@ Message Digests
:class:`~cryptography.hazmat.backends.interfaces.HashBackend`
provider.
+ :raises cryptography.exceptions.UnsupportedInterface: This is raised if the
+ provided ``backend`` does not implement
+ :class:`~cryptography.hazmat.backends.interfaces.HashBackend`
+
.. method:: update(data)
:param bytes data: The bytes to be hashed.