From f2f58738305b51e0fad98cf1fc6c5e490738066f Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 7 Nov 2013 13:17:02 -0800 Subject: Mention return types. --- cryptography/hazmat/primitives/interfaces.py | 4 ++-- 1 file 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. """ -- cgit v1.2.3