diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-01 14:48:19 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-01 14:48:19 -0700 |
commit | bf2de7458aebbc6bc855e9f145cf9a40ceec033e (patch) | |
tree | 708ccc8115aa2cd6f32611980629528392caea92 /docs/hazmat | |
parent | fc09a7cb78591ad0bf5ee0116c85dcee6d47502c (diff) | |
download | cryptography-bf2de7458aebbc6bc855e9f145cf9a40ceec033e.tar.gz cryptography-bf2de7458aebbc6bc855e9f145cf9a40ceec033e.tar.bz2 cryptography-bf2de7458aebbc6bc855e9f145cf9a40ceec033e.zip |
better english
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index f68979a3..b8b1c839 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -66,8 +66,8 @@ where the encrypter and decrypter both use the same key. When the ``BlockCipher`` was constructed in a mode turns it into a stream cipher (e.g. :class:`cryptography.hazmat.primitives.block.modes.CTR`), this will - return bytes immediately, however in other modes it will return blocks - in chunks, whose size is determined by the cipher's block size. + return bytes immediately, however in other modes it will return chunks, + whose size is determined by the cipher's block size. .. method:: finalize() |