diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 23:48:15 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 23:48:15 +0200 |
commit | c2ea0fb9694b663faf13fcf418062706ffca8054 (patch) | |
tree | 7bcd015146520402030728f7a864455859fd3646 | |
parent | 4d9382c610963cf0b21d11014f6f6234b522f85b (diff) | |
download | cryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.tar.gz cryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.tar.bz2 cryptography-c2ea0fb9694b663faf13fcf418062706ffca8054.zip |
Change params to parameters
-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. """ |