aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-04-16 23:47:36 +0800
committerAyrx <terrycwk1994@gmail.com>2014-04-16 23:47:36 +0800
commit6cf29f26989868ca221b3d06526bf750224b7a28 (patch)
tree8787cbc4ee0311cf373a4e9d035a0c23ff75d8dd /docs
parent04fb2bcbd5084154c799d1c694d1fbeed29d8041 (diff)
downloadcryptography-6cf29f26989868ca221b3d06526bf750224b7a28.tar.gz
cryptography-6cf29f26989868ca221b3d06526bf750224b7a28.tar.bz2
cryptography-6cf29f26989868ca221b3d06526bf750224b7a28.zip
Changed cmac_supported() to cmac_algorithm_supported()
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/backends/interfaces.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 546aa766..394d060b 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -327,9 +327,12 @@ A specific ``backend`` may provide one or more of these interfaces.
A backend with methods for using CMAC
- .. method:: cmac_supported()
+ .. method:: cmac_algorithm_supported(algorithm)
- :return: True if CMAC is supported by the backend. False if otherwise.
+ :param algorithm: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.BlockCipherAlgorithm`
+ provider.
+ :return: Returns True if the block cipher is supported for CMAC by this backend
.. method:: create_cmac_ctx(algorithm)