From 984b38696e1f34ebca44fe9c605564eaf4f442bf Mon Sep 17 00:00:00 2001 From: Mohammed Attia Date: Mon, 3 Mar 2014 20:24:01 +0200 Subject: Changed docstrings to conform to lastest updates of the interfaces --- cryptography/hazmat/primitives/interfaces.py | 7 +++---- 1 file 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. """ -- cgit v1.2.3