diff options
author | Terry Chia <terrycwk1994@gmail.com> | 2014-10-12 15:35:21 +0800 |
---|---|---|
committer | Terry Chia <terrycwk1994@gmail.com> | 2014-10-20 22:58:48 +0800 |
commit | cc5e44578e040f552bb1b5f94d1b484f0a59bd47 (patch) | |
tree | a995f459cca324169507c55ca844ce35c7e244ca /cryptography | |
parent | 9985ff7a63fe6fa087ff14a961833c30da302999 (diff) | |
download | cryptography-cc5e44578e040f552bb1b5f94d1b484f0a59bd47.tar.gz cryptography-cc5e44578e040f552bb1b5f94d1b484f0a59bd47.tar.bz2 cryptography-cc5e44578e040f552bb1b5f94d1b484f0a59bd47.zip |
Add docs.
Diffstat (limited to 'cryptography')
-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 295f5282..dde0a3b6 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -516,7 +516,7 @@ class MACContext(object): """ @abc.abstractmethod - def verify(self): + def verify(self, signature): """ Checks if the generated message authentication code matches the signature. |