diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-04-15 21:50:58 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-04-15 21:50:58 +0800 |
commit | 7964c173818f7f510cc148e510c02b457a9cc094 (patch) | |
tree | ececad3c638c859ee285f74c631376ea2d80c519 /cryptography | |
parent | 6fcab02319adfea28b890fa116675c27dc1891d5 (diff) | |
download | cryptography-7964c173818f7f510cc148e510c02b457a9cc094.tar.gz cryptography-7964c173818f7f510cc148e510c02b457a9cc094.tar.bz2 cryptography-7964c173818f7f510cc148e510c02b457a9cc094.zip |
Fixed nitpicks
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 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 |