aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-03 23:48:15 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-03 23:48:15 +0200
commitc2ea0fb9694b663faf13fcf418062706ffca8054 (patch)
tree7bcd015146520402030728f7a864455859fd3646
parent4d9382c610963cf0b21d11014f6f6234b522f85b (diff)
downloadcryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.tar.gz
cryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.tar.bz2
cryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.zip
Change params to parameters
-rw-r--r--cryptography/hazmat/primitives/interfaces.py4
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.
"""