diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 19:20:45 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 19:20:45 +0200 |
commit | 71acc67e71013f8660a16d78520da22ec379e259 (patch) | |
tree | ca310c945a5e06ccdbb1a91016b4e156af5d05af | |
parent | 7a1738a1b8b3da2a215f2ea3aff73a67eaaab406 (diff) | |
download | cryptography-71acc67e71013f8660a16d78520da22ec379e259.tar.gz cryptography-71acc67e71013f8660a16d78520da22ec379e259.tar.bz2 cryptography-71acc67e71013f8660a16d78520da22ec379e259.zip |
Change DSAParams to DSAParameters
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 6 | ||||
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 07e88e26..3824bcde 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -287,7 +287,7 @@ class RSAPublicKey(six.with_metaclass(abc.ABCMeta)): """ -class DSAParams(six.with_metaclass(abc.ABCMeta)): +class DSAParameters(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def modulus(self): """ @@ -361,7 +361,7 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod def parameters(self): """ - The DSAParams object associated with this private key. + The DSAParameters object associated with this private key. """ @@ -375,7 +375,7 @@ class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod def parameters(self): """ - The DSAParams object associated with this public key. + The DSAParameters object associated with this public key. """ diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index d94aee83..cc2a3000 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -231,7 +231,7 @@ Asymmetric Interfaces The public exponent. Alias for :attr:`public_exponent`. -.. class:: DSAParams +.. class:: DSAParameters .. versionadded:: 0.3 @@ -296,9 +296,9 @@ Asymmetric Interfaces .. method:: parameters() - :return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParams` + :return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` - The DSAParams object associated with this private key. + The DSAParameters object associated with this private key. .. attribute:: key_size @@ -327,9 +327,9 @@ Asymmetric Interfaces .. method:: parameters() - :return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParams` + :return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` - The DSAParams object associated with this public key. + The DSAParameters object associated with this public key. .. attribute:: y |