diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-17 12:16:01 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-17 12:16:01 -0700 |
commit | 8ffb64ccd166b00a89ddc27e82e3579e6bed8550 (patch) | |
tree | 2755cfcc1a30895e649d2ffa94230f2b0a2fd951 /docs | |
parent | a4da1d2a6e568e2ec4c474c5d41bbc445f7c90e8 (diff) | |
parent | b8f6a3669d6895d39652d582c190eea20a7c826b (diff) | |
download | cryptography-8ffb64ccd166b00a89ddc27e82e3579e6bed8550.tar.gz cryptography-8ffb64ccd166b00a89ddc27e82e3579e6bed8550.tar.bz2 cryptography-8ffb64ccd166b00a89ddc27e82e3579e6bed8550.zip |
Merge branch 'master' into refactor-cipher-names
Diffstat (limited to 'docs')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst index c4bbf0a5..7899e67d 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -77,6 +77,25 @@ Modes reuse an ``initialization_vector`` with a given ``key``. + +.. class:: cryptography.primitives.block.modes.CTR(nonce) + + .. warning:: + + Counter mode is not recommended for use with block ciphers that have a + block size of less than 128-bits. + + CTR (Counter) is a mode of operation for block ciphers. It is considered + cryptographically strong. + + :param bytes nonce: Should be random bytes. It is critical to never reuse a + ``nonce`` with a given key. Any reuse of a nonce + with the same key compromises the security of every + message encrypted with that key. Must be the same + number of bytes as the ``block_size`` of the cipher + with a given key. The nonce does not need to be kept + secret and may be included alongside the ciphertext. + .. class:: cryptography.primitives.block.modes.OFB(initialization_vector) OFB (Output Feedback) is a mode of operation for block ciphers. It |