aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-03 23:01:27 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-03 23:01:27 +0200
commit4d9382c610963cf0b21d11014f6f6234b522f85b (patch)
tree164e6a50fbab93050688dace0f74cddc12c3ef77
parent7ad280cbe954a2769956c846aaa0112d43a550c9 (diff)
downloadcryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.tar.gz
cryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.tar.bz2
cryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.zip
Fix DSAParams generate method to eliminate ambiguity
-rw-r--r--cryptography/hazmat/primitives/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index 3ffe09f1..828a801a 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -310,7 +310,7 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)):
@abc.abstractmethod
def generate(self):
"""
- Generate DSAPrivateKey from the object's parameters.
+ Generate DSA domain parameters.
"""
@abc.abstractproperty