diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 23:01:27 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 23:01:27 +0200 |
commit | 4d9382c610963cf0b21d11014f6f6234b522f85b (patch) | |
tree | 164e6a50fbab93050688dace0f74cddc12c3ef77 | |
parent | 7ad280cbe954a2769956c846aaa0112d43a550c9 (diff) | |
download | cryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.tar.gz cryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.tar.bz2 cryptography-4d9382c610963cf0b21d11014f6f6234b522f85b.zip |
Fix DSAParams generate method to eliminate ambiguity
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 2 |
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 |