diff options
author | David Reid <dreid@dreid.org> | 2014-02-03 13:14:21 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-02-03 13:14:21 -0800 |
commit | 26339c580801b1e893f48c3b23eb14da8655dfbb (patch) | |
tree | 1b94b3a87fd4b96cc06f74fc82a8729603877411 | |
parent | d69e950e3f2fb8b87c23ade50d61d9d89f3954ba (diff) | |
download | cryptography-26339c580801b1e893f48c3b23eb14da8655dfbb.tar.gz cryptography-26339c580801b1e893f48c3b23eb14da8655dfbb.tar.bz2 cryptography-26339c580801b1e893f48c3b23eb14da8655dfbb.zip |
Remove language about the separate stages of HKDF until we expose multiple stages of HKDF.
-rw-r--r-- | docs/hazmat/primitives/key-derivation-functions.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst index 5c3485cc..48a066c9 100644 --- a/docs/hazmat/primitives/key-derivation-functions.rst +++ b/docs/hazmat/primitives/key-derivation-functions.rst @@ -129,11 +129,6 @@ Different KDFs are suitable for different tasks such as: `HKDF`_ (HMAC-based Extract-and-Expand Key Derivation Function) is suitable for deriving keys of a fixed size used for other cryptographic operations. - It consists of two distinct phases "Extract" and "Expand". The "Extract" - stage takes a low-entropy key and extracts from it a fixed size - pseudorandom key. The "Expand" stage derives a large key of a user - determined size from the pseudorandom key. - :param algorithm: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm` provider. |