diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-12 16:42:11 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-12 16:42:11 -0800 |
commit | c43bb7579b4cdb7b0c9306e5444ad94563f081e5 (patch) | |
tree | 501b9f97e2c5c44042ad7b932232a4d7761870fa | |
parent | 719907c863ba9a5b61a1a056366e23e1100516e8 (diff) | |
download | cryptography-c43bb7579b4cdb7b0c9306e5444ad94563f081e5.tar.gz cryptography-c43bb7579b4cdb7b0c9306e5444ad94563f081e5.tar.bz2 cryptography-c43bb7579b4cdb7b0c9306e5444ad94563f081e5.zip |
Switch this to a warning block
-rw-r--r-- | docs/hazmat/primitives/key-derivation-functions.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst index da47ccd3..d8a0e241 100644 --- a/docs/hazmat/primitives/key-derivation-functions.rst +++ b/docs/hazmat/primitives/key-derivation-functions.rst @@ -128,7 +128,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. - **HKDF should not be used for password storage.** + + .. warning:: + + HKDF should not be used for password storage. .. doctest:: |