diff options
author | David Reid <dreid@dreid.org> | 2013-09-11 16:28:42 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-09-11 16:28:42 -0700 |
commit | f1a39bd77ff8ea5fda5a24616c3fc9a9199be633 (patch) | |
tree | e76229dbf0a7b4067407e51312deb62a634eaba7 /docs/primitives | |
parent | 44ff8ea41be7e28c22f8f4904c9f3278b68e68a9 (diff) | |
download | cryptography-f1a39bd77ff8ea5fda5a24616c3fc9a9199be633.tar.gz cryptography-f1a39bd77ff8ea5fda5a24616c3fc9a9199be633.tar.bz2 cryptography-f1a39bd77ff8ea5fda5a24616c3fc9a9199be633.zip |
OFB uses an initialization vector instead a nonce.
Diffstat (limited to 'docs/primitives')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst index be86229b..46d7c07c 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -68,16 +68,18 @@ Modes reuse an ``initialization_vector`` with a given ``key``. -.. class:: cryptography.primitives.block.modes.OFB(nonce) +.. class:: cryptography.primitives.block.modes.OFB(initialization_vector) OFB (Output Feedback) is a mode of operation for block ciphers. It transforms a block cipher into a stream cipher. - :param bytes nonce: Must be random bytes. They do not need to be kept - secret (they can be included in a transmitted message). - Must be the same number of bytes as the ``block_size`` - of the cipher. Reuse of a ``nonce`` with a given - ``key`` can allow recovery of the original plaintext. + :param bytes initialization_vector: Must be random bytes. They do not need + to be kept secret (they can be included + in a transmitted message). Must be the + same number of bytes as the + ``block_size`` of the cipher. Do not + reuse an ``initialization_vector`` with + a given ``key``. .. class:: cryptography.primitives.block.modes.CFB(initialization_vector) |