diff options
-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. """ |