aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-07 13:17:02 -0800
committerDavid Reid <dreid@dreid.org>2013-11-07 13:17:02 -0800
commitf2f58738305b51e0fad98cf1fc6c5e490738066f (patch)
tree795b67a61f9a312def2ca46f11cd744d50eb218b
parent07e8a49658945d2082ef4f9a4dd9ea01e57b6e58 (diff)
downloadcryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.tar.gz
cryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.tar.bz2
cryptography-f2f58738305b51e0fad98cf1fc6c5e490738066f.zip
Mention return types.
-rw-r--r--cryptography/hazmat/primitives/interfaces.py4
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.
"""