diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 15:28:48 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 15:28:48 -0700 |
commit | c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925 (patch) | |
tree | 7476aeec4905c80eeed6b6045932f506130c9114 /docs/primitives | |
parent | 09515f00076fa9cc709183d3e15393a9ce579974 (diff) | |
download | cryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.tar.gz cryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.tar.bz2 cryptography-c2ae2be66ccbdb5ddb9c103ea922679f5b4a7925.zip |
This is where padding goes
Diffstat (limited to 'docs/primitives')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 6 |
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 +~~~~~~~~ |