diff options
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 04537f8c..3ffe09f1 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -297,7 +297,7 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def subgroup_order(self): """ - The subgroup order that's used in generating the DSA keypair + The subgroup order that's used in generating the DSA keypair by the generator. """ @@ -323,7 +323,7 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def q(self): """ - The subgroup order that's used in generating the DSA keypair + The subgroup order that's used in generating the DSA keypair by the generator. Alias for subgroup_order. """ |