From a4f529e2dbbe5e30b77c1f41ea203012f49b064b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 8 Aug 2013 11:29:06 -0700 Subject: fix spelling errors, move module --- docs/primitives/symmetric-encryption.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/primitives') diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst index be6ed2ba..7c77f295 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -13,8 +13,8 @@ or GCM). A simple example of encrypting content with AES is: .. code-block:: pycon - >>> from cryptography.primitives import BlockCipher, CBC >>> from cryptography.primitives.aes import AES + >>> from cryptography.primitives.block import BlockCipher, CBC >>> cipher = BlockCipher(AES(key), CBC(iv)) >>> cipher.encrypt("my secret message") + cipher.finalize() # The ciphertext @@ -45,7 +45,7 @@ Ciphers Modes ~~~~~ -.. class:: cryptographically.primitives.CBC(initialization_vector) +.. class:: cryptography.primitives.block.CBC(initialization_vector) CBC (Cipher block chaining) is a mode of operation for block ciphers. It is considered cryptographically strong. -- cgit v1.2.3