diff options
author | David Reid <dreid@dreid.org> | 2013-11-07 13:17:02 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-07 13:17:02 -0800 |
commit | f2f58738305b51e0fad98cf1fc6c5e490738066f (patch) | |
tree | 795b67a61f9a312def2ca46f11cd744d50eb218b | |
parent | 07e8a49658945d2082ef4f9a4dd9ea01e57b6e58 (diff) | |
download | cryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.tar.gz cryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.tar.bz2 cryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.zip |
Mention return types.
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index da4fa209..67dbe6fa 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -37,7 +37,7 @@ class ModeWithInitializationVector(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def initialization_vector(self): """ - The value of the initialization vector for this mode. + The value of the initialization vector for this mode as bytes. """ @@ -45,7 +45,7 @@ class ModeWithNonce(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def nonce(self): """ - The value of the nonce for this mode. + The value of the nonce for this mode as bytes. """ |