From 001637bec0e7a2442c2694dfe9c98c6efdc97d16 Mon Sep 17 00:00:00 2001 From: Ayrx Date: Mon, 21 Apr 2014 22:32:43 +0800 Subject: Added wikipedia link --- docs/hazmat/primitives/mac/cmac.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs/hazmat/primitives/mac') diff --git a/docs/hazmat/primitives/mac/cmac.rst b/docs/hazmat/primitives/mac/cmac.rst index c2a50cdd..be35014f 100644 --- a/docs/hazmat/primitives/mac/cmac.rst +++ b/docs/hazmat/primitives/mac/cmac.rst @@ -10,7 +10,7 @@ Cipher-based message authentication code import binascii key = binascii.unhexlify(b"0" * 32) -Cipher-based message authentication codes (or CMACs) are a tool for calculating +`Cipher-based message authentication codes`_ (or CMACs) are a tool for calculating 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. @@ -98,3 +98,6 @@ of a message. :return bytes: The message authentication code as bytes. :raises cryptography.exceptions.AlreadyFinalized: + + +.. _`Cipher-based message authentication codes`: https://en.wikipedia.org/wiki/CMAC -- cgit v1.2.3