diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 11:17:56 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 11:17:56 -0700 |
commit | c651f76b500bc749efc720af91f2edd773e8b52f (patch) | |
tree | 317b9ea71315872cda66b1d6d391affed6c2d7bf /docs/primitives | |
parent | 48ec9a30b0a9c5d0818625dab627a576b57797cf (diff) | |
download | cryptography-c651f76b500bc749efc720af91f2edd773e8b52f.tar.gz cryptography-c651f76b500bc749efc720af91f2edd773e8b52f.tar.bz2 cryptography-c651f76b500bc749efc720af91f2edd773e8b52f.zip |
Document how long iv should be
Diffstat (limited to 'docs/primitives')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst index 4675ebfc..c0b36084 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -52,4 +52,6 @@ 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). + in a transmitted message). Should be + the same number of bytes as the ``key`` + for the cipher. |