diff options
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
| -rw-r--r-- | docs/hazmat/primitives/asymmetric/dh.rst | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dh.rst b/docs/hazmat/primitives/asymmetric/dh.rst index 73e534e2..759b265b 100644 --- a/docs/hazmat/primitives/asymmetric/dh.rst +++ b/docs/hazmat/primitives/asymmetric/dh.rst @@ -223,7 +223,7 @@ Key interfaces  Numbers  ~~~~~~~ -.. class:: DHParameterNumbers(p, g) +.. class:: DHParameterNumbers(p, g, q=None)      .. versionadded:: 0.8 @@ -239,7 +239,15 @@ Numbers          :type: int -        The generator value. Must be 2 or 5. +        The generator value. Must be 2 or 5 (Unless q is given). + +    .. attribute:: q + +        .. versionadded:: 1.8 + +        :type: int + +        p subgroup order value.  .. class:: DHPrivateNumbers(x, public_numbers)  | 
