diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 15:40:12 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 15:40:12 -0700 |
commit | 9f79164a8d7d5004884b455d07c2ab1b111d037e (patch) | |
tree | 535c2ddadea2bcffa5f99372d1cde65b91d4778b /docs/primitives/symmetric-encryption.rst | |
parent | ef2f91e6fe694be91ce3a0a37ebaf58d89bb5985 (diff) | |
parent | c160079df8dd021b6b1e8091025ba27ddc6cd6c0 (diff) | |
download | cryptography-9f79164a8d7d5004884b455d07c2ab1b111d037e.tar.gz cryptography-9f79164a8d7d5004884b455d07c2ab1b111d037e.tar.bz2 cryptography-9f79164a8d7d5004884b455d07c2ab1b111d037e.zip |
Merge branch 'master' into triple-des
Diffstat (limited to 'docs/primitives/symmetric-encryption.rst')
-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 b1b40486..cf251c91 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -94,6 +94,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 |