aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/key-derivation-functions.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-11-23 17:44:28 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2014-11-23 17:44:28 -0600
commit1cfc5d51322678a1fe3120116379de134b7d596c (patch)
tree3e865ec23b94aeb73aa457a451377d35a0fddb17 /docs/hazmat/primitives/key-derivation-functions.rst
parenta26f9553e435193c07705477def60253f8bc6644 (diff)
downloadcryptography-1cfc5d51322678a1fe3120116379de134b7d596c.tar.gz
cryptography-1cfc5d51322678a1fe3120116379de134b7d596c.tar.bz2
cryptography-1cfc5d51322678a1fe3120116379de134b7d596c.zip
A few more docs fixes
Diffstat (limited to 'docs/hazmat/primitives/key-derivation-functions.rst')
-rw-r--r--docs/hazmat/primitives/key-derivation-functions.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst
index f68b12c1..60096870 100644
--- a/docs/hazmat/primitives/key-derivation-functions.rst
+++ b/docs/hazmat/primitives/key-derivation-functions.rst
@@ -211,9 +211,9 @@ Different KDFs are suitable for different tasks such as:
.. method:: verify(key_material, expected_key)
- :param key_material bytes: The input key material. This is the same as
+ :param bytes key_material: The input key material. This is the same as
``key_material`` in :meth:`derive`.
- :param expected_key bytes: The expected result of deriving a new key,
+ :param bytes expected_key: The expected result of deriving a new key,
this is the same as the return value of
:meth:`derive`.
:raises cryptography.exceptions.InvalidKey: This is raised when the
@@ -304,9 +304,9 @@ Different KDFs are suitable for different tasks such as:
.. method:: verify(key_material, expected_key)
- :param key_material bytes: The input key material. This is the same as
+ :param bytes key_material: The input key material. This is the same as
``key_material`` in :meth:`derive`.
- :param expected_key bytes: The expected result of deriving a new key,
+ :param bytes expected_key: The expected result of deriving a new key,
this is the same as the return value of
:meth:`derive`.
:raises cryptography.exceptions.InvalidKey: This is raised when the