diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-12 19:24:47 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-12 19:24:47 -0600 |
commit | 2b764a1c7b42a300a6e8b1446a25fdf13aa0eabd (patch) | |
tree | fa60f4cbb2ac085daa5e9219d791263baff35859 /docs/hazmat/primitives | |
parent | 25916cfc8bfbc705a98e38b734d932b0f5820cdd (diff) | |
parent | c43bb7579b4cdb7b0c9306e5444ad94563f081e5 (diff) | |
download | cryptography-2b764a1c7b42a300a6e8b1446a25fdf13aa0eabd.tar.gz cryptography-2b764a1c7b42a300a6e8b1446a25fdf13aa0eabd.tar.bz2 cryptography-2b764a1c7b42a300a6e8b1446a25fdf13aa0eabd.zip |
Merge pull request #602 from alex/hkdf-docs
Be clear about HKDF's applicability for password storage
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/key-derivation-functions.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst index 1937c2ec..d8a0e241 100644 --- a/docs/hazmat/primitives/key-derivation-functions.rst +++ b/docs/hazmat/primitives/key-derivation-functions.rst @@ -129,6 +129,10 @@ 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. + .. warning:: + + HKDF should not be used for password storage. + .. doctest:: >>> import os |