From a0b59223025a54c800c7844568428992f876a711 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 6 Nov 2013 16:07:29 -0800 Subject: Proper name for the iv thing. --- cryptography/hazmat/primitives/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. """ -- cgit v1.2.3