diff options
author | David Reid <dreid@dreid.org> | 2013-11-06 16:07:29 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-06 16:07:29 -0800 |
commit | a0b59223025a54c800c7844568428992f876a711 (patch) | |
tree | 6bab2e3d55ba62c38adacfa5b9c332898ffa0ac6 | |
parent | 2c0c91e6ed245d6363828458020e90ec0670ed24 (diff) | |
download | cryptography-a0b59223025a54c800c7844568428992f876a711.tar.gz cryptography-a0b59223025a54c800c7844568428992f876a711.tar.bz2 cryptography-a0b59223025a54c800c7844568428992f876a711.zip |
Proper name for the iv thing.
-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 d6a05c18..d3962a2a 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -27,7 +27,7 @@ def register(iface): class ModeWithInitializationVector(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty - def iv(self): + def initialization_vector(self): """ The value of the initialization vector for this mode. """ |