aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-01 14:43:02 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-01 14:43:02 -0700
commitfc09a7cb78591ad0bf5ee0116c85dcee6d47502c (patch)
tree4c70fafc8a6033cf5734509a2eb06d18c18656e8 /docs/hazmat
parentd1f0201fd80659395a8444efe11ba24473c212e5 (diff)
downloadcryptography-fc09a7cb78591ad0bf5ee0116c85dcee6d47502c.tar.gz
cryptography-fc09a7cb78591ad0bf5ee0116c85dcee6d47502c.tar.bz2
cryptography-fc09a7cb78591ad0bf5ee0116c85dcee6d47502c.zip
For example
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index a0e76506..f68979a3 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -64,9 +64,10 @@ where the encrypter and decrypter both use the same key.
:return bytes: Returns the data that was encrypted or decrypted.
When the ``BlockCipher`` was constructed in a mode turns it into a
- stream cipher, 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.
+ 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.
.. method:: finalize()