diff options
author | David Reid <dreid@dreid.org> | 2014-02-03 13:54:30 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-02-03 13:54:30 -0800 |
commit | 134f1f4acf423c3546b9552a169d10d40dd5fc84 (patch) | |
tree | 7051cc3f9ef5ce6721a539b609b60d07520f94e9 /docs | |
parent | 5df929ce2dea053626af4f8b3c3b98b81b359bda (diff) | |
download | cryptography-134f1f4acf423c3546b9552a169d10d40dd5fc84.tar.gz cryptography-134f1f4acf423c3546b9552a169d10d40dd5fc84.tar.bz2 cryptography-134f1f4acf423c3546b9552a169d10d40dd5fc84.zip |
Strings have quote marks at both ends.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/key-derivation-functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst index a91d8ca9..1937c2ec 100644 --- a/docs/hazmat/primitives/key-derivation-functions.rst +++ b/docs/hazmat/primitives/key-derivation-functions.rst @@ -145,7 +145,7 @@ Different KDFs are suitable for different tasks such as: ... info=info, ... backend=backend ... ) - >>> key = hkdf.derive(b"input key) + >>> key = hkdf.derive(b"input key") >>> hkdf = HKDF( ... algorithm=hashes.SHA256(), ... length=32, |