aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/primitives/cryptographic-hashes.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/primitives/cryptographic-hashes.rst b/docs/primitives/cryptographic-hashes.rst
index 6e8f601b..397e50d7 100644
--- a/docs/primitives/cryptographic-hashes.rst
+++ b/docs/primitives/cryptographic-hashes.rst
@@ -3,17 +3,16 @@ Message Digests
.. class:: cryptography.primitives.hashes.BaseHash
- Abstract base class that implements a common interface for
- all hash algorithms that follow here
+ Abstract base class that implements a common interface for all hash
+ algorithms that follow here.
- .. method:: update(string)
+ .. method:: update(data)
- :param bytes string: The bytes you wish to hash.
+ :param bytes data The bytes you wish to hash.
.. method:: copy()
- :return: a new instance of this object with a
- copied internal state.
+ :return: a new instance of this object with a copied internal state.
.. method:: digest()