aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 11:58:04 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 11:58:04 -0700
commit2dc2b861fac9fccb333f49e032245f8c83ad403a (patch)
treeb7b62e1bf15ae69ed14f7c8478371c7ce3ebb18e
parent4dd1c2701ae098325d7fdbebfcf721b1c5a51167 (diff)
downloadcryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.tar.gz
cryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.tar.bz2
cryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.zip
more accurate
-rw-r--r--docs/primitives/symmetric-encryption.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index f79bcacb..5d2177df 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -51,6 +51,8 @@ Modes
:param bytes initialization_vector: Must be random bytes. They do not need
to be kept secret (they can be included
- in a transmitted message). Should be
- the same number of bytes as the
+ in a transmitted message). Must be the
+ same number of bytes as the
``block_size`` of the cipher.
+ Initialization vectors should not be
+ reused with the same ``key``.