diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-29 19:36:54 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-29 19:36:54 -0800 |
commit | 78ff4ee986bfad020610f2eeb458547cc373034b (patch) | |
tree | fa8d25b93a146059c0f81f821a7b5d287b255d45 /docs/hazmat/primitives/key-derivation-functions.rst | |
parent | 307437b1b401aa3bfd8f911c150a825476d06d9c (diff) | |
parent | a8e125ff478c0a3ace218cd03b21999ec123162b (diff) | |
download | cryptography-78ff4ee986bfad020610f2eeb458547cc373034b.tar.gz cryptography-78ff4ee986bfad020610f2eeb458547cc373034b.tar.bz2 cryptography-78ff4ee986bfad020610f2eeb458547cc373034b.zip |
Merge pull request #534 from alex/docs-fixes
Fixed up some backwards syntax in the docs
Diffstat (limited to 'docs/hazmat/primitives/key-derivation-functions.rst')
-rw-r--r-- | docs/hazmat/primitives/key-derivation-functions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst index 551dbd6d..f96eae06 100644 --- a/docs/hazmat/primitives/key-derivation-functions.rst +++ b/docs/hazmat/primitives/key-derivation-functions.rst @@ -85,7 +85,7 @@ Different KDFs are suitable for different tasks such as: .. method:: derive(key_material) - :param key_material bytes: The input key material. For PBKDF2 this + :param bytes key_material: The input key material. For PBKDF2 this should be a password. :return bytes: the derived key. :raises cryptography.exceptions.AlreadyFinalized: This is raised when @@ -98,9 +98,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 |