aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/interfaces.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-02-13 08:20:35 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2015-02-13 08:20:35 -0500
commit723cc3f2ed921c01168ea8f35ca7e94f2cc0a44b (patch)
treef265ae766459b1f02cf4fd952db5f043402387c8 /docs/hazmat/primitives/interfaces.rst
parent731f4296de1eceee149bf2003b780c2e33f8bde3 (diff)
parenta10be69304b3c0dc61689487075b6ddd31a2823b (diff)
downloadcryptography-723cc3f2ed921c01168ea8f35ca7e94f2cc0a44b.tar.gz
cryptography-723cc3f2ed921c01168ea8f35ca7e94f2cc0a44b.tar.bz2
cryptography-723cc3f2ed921c01168ea8f35ca7e94f2cc0a44b.zip
Merge pull request #1654 from reaperhulk/make-docs-nitpicky
make our docs job nitpicky and fix every broken link
Diffstat (limited to 'docs/hazmat/primitives/interfaces.rst')
-rw-r--r--docs/hazmat/primitives/interfaces.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index 0995489f..cd21ea1a 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -1,5 +1,7 @@
.. hazmat::
+.. module:: cryptography.hazmat.primitives.interfaces
+
Interfaces
==========
@@ -15,9 +17,6 @@ to document argument and return types.
Symmetric ciphers
-----------------
-.. currentmodule:: cryptography.hazmat.primitives.interfaces
-
-
.. class:: CipherAlgorithm
A named symmetric encryption algorithm.
@@ -75,9 +74,10 @@ Interfaces used by the symmetric cipher modes described in
meets any necessary invariants. This should raise an exception if they
are not met.
- For example, the :class:`~cryptography.hazmat.primitives.modes.CBC`
- mode uses this method to check that the provided initialization
- vector's length matches the block size of the algorithm.
+ For example, the
+ :class:`~cryptography.hazmat.primitives.ciphers.modes.CBC` mode uses
+ this method to check that the provided initialization vector's length
+ matches the block size of the algorithm.
.. class:: ModeWithInitializationVector