diff options
| author | Terry Chia <terrycwk1994@gmail.com> | 2014-10-12 13:05:34 +0800 |
|---|---|---|
| committer | Terry Chia <terrycwk1994@gmail.com> | 2014-10-20 22:58:48 +0800 |
| commit | 9985ff7a63fe6fa087ff14a961833c30da302999 (patch) | |
| tree | af797de13a1a7dad005f34c5f712d1f1580b5e61 | |
| parent | 0d7439d171c0692959de175aa1040d5bba2313a0 (diff) | |
| download | cryptography-9985ff7a63fe6fa087ff14a961833c30da302999.tar.gz cryptography-9985ff7a63fe6fa087ff14a961833c30da302999.tar.bz2 cryptography-9985ff7a63fe6fa087ff14a961833c30da302999.zip | |
Ooops.
| -rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index dacabb2e..295f5282 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -393,7 +393,7 @@ class KeyDerivationFunction(object): @six.add_metaclass(abc.ABCMeta) class CMACContext(object): @abc.abstractmethod - def update(self): + def update(self, data): """ Processes the provided bytes. """ |
