diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-01-05 06:51:39 -0600 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-01-05 07:51:39 -0500 |
commit | 754c693bc76e91150ad06de13f74c42b48f59231 (patch) | |
tree | 854df981ada62ff862df826fcfa4c2388b3dcc9e | |
parent | c0c70fb78df67834f0912e0af95087cf93bb31ec (diff) | |
download | cryptography-754c693bc76e91150ad06de13f74c42b48f59231.tar.gz cryptography-754c693bc76e91150ad06de13f74c42b48f59231.tar.bz2 cryptography-754c693bc76e91150ad06de13f74c42b48f59231.zip |
DH interfaces existed in 0.9 but we didn't implement until 1.7 (#4068)
* DH interfaces existed in 0.9 but we didn't implement until 1.7
* sigh empty
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dh.rst | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dh.rst b/docs/hazmat/primitives/asymmetric/dh.rst index b7f72482..e8e91cb4 100644 --- a/docs/hazmat/primitives/asymmetric/dh.rst +++ b/docs/hazmat/primitives/asymmetric/dh.rst @@ -68,7 +68,7 @@ Group parameters .. function:: generate_parameters(generator, key_size, backend) - .. versionadded:: 0.9 + .. versionadded:: 1.7 Generate a new DH parameter group for use with ``backend``. @@ -89,13 +89,11 @@ Group parameters .. class:: DHParameters - .. versionadded:: 0.9 + .. versionadded:: 1.7 .. method:: generate_private_key() - .. versionadded:: 0.9 - Generate a DH private key. This method can be used to generate many new private keys from a single set of parameters. @@ -130,7 +128,7 @@ Group parameters .. class:: DHParametersWithSerialization - .. versionadded:: 0.9 + .. versionadded:: 1.7 Alias for :class:`DHParameters`. @@ -140,7 +138,7 @@ Key interfaces .. class:: DHPrivateKey - .. versionadded:: 0.9 + .. versionadded:: 1.7 A DH private key that is not an :term:`opaque key` also implements :class:`DHPrivateKeyWithSerialization` to provide serialization methods. @@ -173,7 +171,7 @@ Key interfaces .. class:: DHPrivateKeyWithSerialization - .. versionadded:: 0.9 + .. versionadded:: 1.7 This interface contains additional methods relating to serialization. Any object with this interface also has all the methods from @@ -215,7 +213,7 @@ Key interfaces .. class:: DHPublicKey - .. versionadded:: 0.9 + .. versionadded:: 1.7 .. attribute:: key_size @@ -254,7 +252,7 @@ Key interfaces .. class:: DHPublicKeyWithSerialization - .. versionadded:: 0.9 + .. versionadded:: 1.7 Alias for :class:`DHPublicKey`. |