diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 11:58:04 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 11:58:04 -0700 |
commit | 2dc2b861fac9fccb333f49e032245f8c83ad403a (patch) | |
tree | b7b62e1bf15ae69ed14f7c8478371c7ce3ebb18e /docs/primitives | |
parent | 4dd1c2701ae098325d7fdbebfcf721b1c5a51167 (diff) | |
download | cryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.tar.gz cryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.tar.bz2 cryptography-2dc2b861fac9fccb333f49e032245f8c83ad403a.zip |
more accurate
Diffstat (limited to 'docs/primitives')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 6 |
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``. |