diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-04-22 11:10:55 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-04-22 12:12:41 +0800 |
commit | a93abae0a62f4da67fb51a77dc0acafe2d04f99c (patch) | |
tree | a2b1699483129622ceedf370a6d376d84cfc2828 /docs/hazmat/primitives/mac/cmac.rst | |
parent | 001637bec0e7a2442c2694dfe9c98c6efdc97d16 (diff) | |
download | cryptography-a93abae0a62f4da67fb51a77dc0acafe2d04f99c.tar.gz cryptography-a93abae0a62f4da67fb51a77dc0acafe2d04f99c.tar.bz2 cryptography-a93abae0a62f4da67fb51a77dc0acafe2d04f99c.zip |
Added documentation to note rfc 4493
Diffstat (limited to 'docs/hazmat/primitives/mac/cmac.rst')
-rw-r--r-- | docs/hazmat/primitives/mac/cmac.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/mac/cmac.rst b/docs/hazmat/primitives/mac/cmac.rst index be35014f..8b88a3ce 100644 --- a/docs/hazmat/primitives/mac/cmac.rst +++ b/docs/hazmat/primitives/mac/cmac.rst @@ -15,6 +15,8 @@ message authentication codes using a block cipher coupled with a secret key. You can use an CMAC to verify both the integrity and authenticity of a message. +A subset of CMAC with the AES-128 algorithm is described in :rfc:`4493`. + .. class:: CMAC(algorithm, backend) CMAC objects take a |