aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/key-derivation-functions.rst
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-02-03 13:14:21 -0800
committerDavid Reid <dreid@dreid.org>2014-02-03 13:14:21 -0800
commit26339c580801b1e893f48c3b23eb14da8655dfbb (patch)
tree1b94b3a87fd4b96cc06f74fc82a8729603877411 /docs/hazmat/primitives/key-derivation-functions.rst
parentd69e950e3f2fb8b87c23ade50d61d9d89f3954ba (diff)
downloadcryptography-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.
Diffstat (limited to 'docs/hazmat/primitives/key-derivation-functions.rst')
-rw-r--r--docs/hazmat/primitives/key-derivation-functions.rst5
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.