Started stubbing stuff out, including a simple test, now is the part where we
write some actual cryptographic software. So yeah.
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index fe074f3..29eb282 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -12,7 +12,7 @@
.. code-block:: pycon
- >>> from cryptography.primitives.block import BlockCipher, cipher, mode, padding
+ >>> from cryptography.primitives.block import BlockCipher, ciphers, modes, padding
>>> cipher = BlockCipher(cipher.AES(key), mode.CBC(iv, padding.PKCS7()))
>>> cipher.encrypt("my secret message") + cipher.finalize()
# The ciphertext
@@ -36,7 +36,7 @@
Ciphers
~~~~~~~
-.. class:: cryptography.primitives.block.cipher.AES(key)
+.. class:: cryptography.primitives.block.ciphers.AES(key)
AES (Advanced Encryption Standard) is a block cipher standardized by NIST.
AES is both fast, and cryptographically strong. It is a good default
@@ -49,7 +49,7 @@
Modes
~~~~~
-.. class:: cryptography.primitives.block.mode.CBC(initialization_vector, padding)
+.. class:: cryptography.primitives.block.modes.CBC(initialization_vector, padding)
CBC (Cipher block chaining) is a mode of operation for block ciphers. It is
considered cryptographically strong.