aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/symmetric-encryption.rst
diff options
context:
space:
mode:
authorGabriel Orisaka <orisaka@gmail.com>2016-07-31 10:49:59 -0300
committerAlex Gaynor <alex.gaynor@gmail.com>2016-07-31 09:49:59 -0400
commit617fe4b487485d993def60e9e35175c8e4d229ac (patch)
tree1d0b07e159fa5c55dc6ef08d4762583319377593 /docs/hazmat/primitives/symmetric-encryption.rst
parent33c59a3b176d76230c37f6b7b00cc74ba3263b02 (diff)
downloadcryptography-617fe4b487485d993def60e9e35175c8e4d229ac.tar.gz
cryptography-617fe4b487485d993def60e9e35175c8e4d229ac.tar.bz2
cryptography-617fe4b487485d993def60e9e35175c8e4d229ac.zip
Remove provider language from docs (#3072)
Diffstat (limited to 'docs/hazmat/primitives/symmetric-encryption.rst')
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index 7b00d110..67ca334b 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -43,14 +43,14 @@ in an "encrypt-then-MAC" formulation as `described by Colin Percival`_.
:param algorithms: A
:class:`~cryptography.hazmat.primitives.ciphers.CipherAlgorithm`
- provider such as those described
+ instance such as those described
:ref:`below <symmetric-encryption-algorithms>`.
:param mode: A :class:`~cryptography.hazmat.primitives.ciphers.modes.Mode`
- provider such as those described
+ instance such as those described
:ref:`below <symmetric-encryption-modes>`.
:param backend: A
:class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
- provider.
+ instance.
:raises cryptography.exceptions.UnsupportedAlgorithm: This is raised if the
provided ``backend`` does not implement
@@ -60,7 +60,7 @@ in an "encrypt-then-MAC" formulation as `described by Colin Percival`_.
:return: An encrypting
:class:`~cryptography.hazmat.primitives.ciphers.CipherContext`
- provider.
+ instance.
If the backend doesn't support the requested combination of ``cipher``
and ``mode`` an :class:`~cryptography.exceptions.UnsupportedAlgorithm`
@@ -70,7 +70,7 @@ in an "encrypt-then-MAC" formulation as `described by Colin Percival`_.
:return: A decrypting
:class:`~cryptography.hazmat.primitives.ciphers.CipherContext`
- provider.
+ instance.
If the backend doesn't support the requested combination of ``cipher``
and ``mode`` an :class:`~cryptography.exceptions.UnsupportedAlgorithm`
@@ -473,7 +473,7 @@ Interfaces
:class:`~cryptography.hazmat.primitives.ciphers.modes.GCM`) the result will
conform to the ``AEADCipherContext`` and ``CipherContext`` interfaces. If
it is an encryption context it will additionally be an
- ``AEADEncryptionContext`` provider. ``AEADCipherContext`` contains an
+ ``AEADEncryptionContext`` instance. ``AEADCipherContext`` contains an
additional method :meth:`authenticate_additional_data` for adding
additional authenticated but unencrypted data (see note below). You should
call this before calls to ``update``. When you are done call ``finalize``