diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 20:24:01 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 20:24:01 +0200 |
commit | 984b38696e1f34ebca44fe9c605564eaf4f442bf (patch) | |
tree | 235b7200b7260b9fa30b0886a7e3cb2b868ff37d | |
parent | ed2172b5c21879b03fce52976d26ba899128c163 (diff) | |
download | cryptography-984b38696e1f34ebca44fe9c605564eaf4f442bf.tar.gz cryptography-984b38696e1f34ebca44fe9c605564eaf4f442bf.tar.bz2 cryptography-984b38696e1f34ebca44fe9c605564eaf4f442bf.zip |
Changed docstrings to conform to lastest updates of the interfaces
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index e81abfb7..bca8d544 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -356,14 +356,13 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def y(self): """ - The DSAPublicKey associated with this private key. - Alias for public_key. + The integer value of y. """ @abc.abstractproperty def params(self): """ - The params associated with a DSA keypair + The DSAParams object associated with this private key. """ @@ -377,7 +376,7 @@ class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def params(self): """ - The params associated with a DSA keypair + The DSAParams object associated with this public key. """ |