aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/primitives/interfaces.py7
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.
"""