aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 15:28:48 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 15:28:48 -0700
commitc2ae2be66ccbdb5ddb9c103ea922679f5b4a7925 (patch)
tree7476aeec4905c80eeed6b6045932f506130c9114
parent09515f00076fa9cc709183d3e15393a9ce579974 (diff)
downloadcryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.tar.gz
cryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.tar.bz2
cryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.zip
This is where padding goes
-rw-r--r--docs/primitives/symmetric-encryption.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index fb1a7cfc..08724a01 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -49,7 +49,7 @@ Ciphers
Modes
~~~~~
-.. class:: cryptography.primitives.block.mode.CBC(initialization_vector)
+.. class:: cryptography.primitives.block.mode.CBC(initialization_vector, padding)
CBC (Cipher block chaining) is a mode of operation for block ciphers. It is
considered cryptographically strong.
@@ -61,3 +61,7 @@ Modes
``block_size`` of the cipher. Do not
reuse an ``initialization_vector`` with
a given ``key``.
+ :param padding: One of the paddings described below.
+
+Paddings
+~~~~~~~~