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 828a801a..a8956b85 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -362,7 +362,7 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): """ @abc.abstractproperty - def params(self): + def parameters(self): """ The DSAParams object associated with this private key. """ @@ -376,7 +376,7 @@ class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): """ @abc.abstractproperty - def params(self): + def parameters(self): """ The DSAParams object associated with this public key. """ |