aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends/interfaces.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2019-03-08 09:53:09 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2019-03-07 20:53:09 -0500
commit6d04e958abef078042c9a82ddbaa2d3c384db4fa (patch)
treec542bb6c8784a762f192244ebe75f5f19f35fa7c /docs/hazmat/backends/interfaces.rst
parent88d836e10d090dfedc4b88a0fe302c77382a8211 (diff)
downloadcryptography-6d04e958abef078042c9a82ddbaa2d3c384db4fa.tar.gz
cryptography-6d04e958abef078042c9a82ddbaa2d3c384db4fa.tar.bz2
cryptography-6d04e958abef078042c9a82ddbaa2d3c384db4fa.zip
remove maccontext (#4803)
Diffstat (limited to 'docs/hazmat/backends/interfaces.rst')
-rw-r--r--docs/hazmat/backends/interfaces.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 2c2d70ec..36dd3a7a 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -159,14 +159,13 @@ A specific ``backend`` may provide one or more of these interfaces.
.. method:: create_cmac_ctx(algorithm)
Create a
- :class:`~cryptography.hazmat.primitives.mac.MACContext` that
+ context that
uses the specified ``algorithm`` to calculate a message authentication code.
:param algorithm: An instance of
:class:`~cryptography.hazmat.primitives.ciphers.BlockCipherAlgorithm`.
- :returns:
- :class:`~cryptography.hazmat.primitives.mac.MACContext`
+ :returns: CMAC object.
.. class:: PBKDF2HMACBackend