diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-22 14:49:05 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-22 14:49:05 -0700 |
commit | 6ffa54f31fbf1a16293b724b714f29468dcdf52d (patch) | |
tree | 7c1e171f1b4f094881c05d67213aca7c608fbd84 /docs/primitives | |
parent | f2259868052becbf38c05f0dfabee41fbaabf72e (diff) | |
parent | 63ba6654bc032c270a20035767a20837899b82bc (diff) | |
download | cryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.tar.gz cryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.tar.bz2 cryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.zip |
Merge pull request #165 from dreid/proper-returns
Don't try to fit the type into the :return: declaration.
Diffstat (limited to 'docs/primitives')
-rw-r--r-- | docs/primitives/symmetric-encryption.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst index 73d8ad37..9768246c 100644 --- a/docs/primitives/symmetric-encryption.rst +++ b/docs/primitives/symmetric-encryption.rst @@ -33,11 +33,15 @@ where the encrypter and decrypter both use the same key. .. method:: encryptor() - :return :class:`CipherContext`: encryption instance + :return: An encrypting + :class:`~cryptography.primitives.interfaces.CipherContext` + provider. .. method:: decryptor() - :return :class:`CipherContext`: decryption instance + :return: A decrypting + :class:`~cryptography.primitives.interfaces.CipherContext` + provider. .. class:: cryptography.primitives.interfaces.CipherContext() |