aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-04-22 21:00:34 +0800
committerAyrx <terrycwk1994@gmail.com>2014-04-22 23:32:52 +0800
commit9bea9373efcddd390aa2d2f63d8690d6d3ceca14 (patch)
tree80e8da7e2bd28c892745fca091a7189452f3d17f
parentbafbc3385e4fb3c048b3daa61ff2807a88f5b2e1 (diff)
downloadcryptography-9bea9373efcddd390aa2d2f63d8690d6d3ceca14.tar.gz
cryptography-9bea9373efcddd390aa2d2f63d8690d6d3ceca14.tar.bz2
cryptography-9bea9373efcddd390aa2d2f63d8690d6d3ceca14.zip
Added changelog and versionadded for CMAC
-rw-r--r--CHANGELOG.rst2
-rw-r--r--docs/hazmat/primitives/mac/cmac.rst2
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 9e89e563..106e0ab2 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -11,6 +11,8 @@ Changelog
to :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS`. It will be
removed from ``MGF1`` in two releases per our :doc:`/api-stability` policy.
+* Added :class:`~cryptography.hazmat.primitives.cmac.CMAC`.
+
0.3 - 2014-03-27
~~~~~~~~~~~~~~~~
diff --git a/docs/hazmat/primitives/mac/cmac.rst b/docs/hazmat/primitives/mac/cmac.rst
index 69706bb7..a6b048b5 100644
--- a/docs/hazmat/primitives/mac/cmac.rst
+++ b/docs/hazmat/primitives/mac/cmac.rst
@@ -19,6 +19,8 @@ A subset of CMAC with the AES-128 algorithm is described in :rfc:`4493`.
.. class:: CMAC(algorithm, backend)
+ .. versionadded:: 0.4
+
CMAC objects take a
:class:`~cryptography.hazmat.primitives.interfaces.BlockCipherAlgorithm` provider.