Ooops.
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index dacabb2..295f528 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -393,7 +393,7 @@
 @six.add_metaclass(abc.ABCMeta)
 class CMACContext(object):
     @abc.abstractmethod
-    def update(self):
+    def update(self, data):
         """
         Processes the provided bytes.
         """