aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/primitives/interfaces.py2
-rw-r--r--docs/hazmat/primitives/interfaces.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index ec970e68..6bda6478 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -469,7 +469,7 @@ class CMACContext(object):
def finalize(self):
"""
- Returns the results of processing the final block as bytes.
+ Returns the message authentication code as bytes.
"""
@abc.abstractmethod
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index a0468aa3..9743278c 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -460,7 +460,7 @@ CMAC
.. method:: finalize()
- :return: The final message authentication code.
+ :return: The message authentication code.
.. method:: copy()