diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-26 16:16:50 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-28 08:35:32 -0600 |
commit | 1262be2b8e1b1577df61846c7ce51605387b5850 (patch) | |
tree | 280e5291f04981c7306a9e4184dbcf94bb385631 /docs/hazmat | |
parent | ecbc00b3d2d3e3daf0d047da4113d7dceb211366 (diff) | |
download | cryptography-1262be2b8e1b1577df61846c7ce51605387b5850.tar.gz cryptography-1262be2b8e1b1577df61846c7ce51605387b5850.tar.bz2 cryptography-1262be2b8e1b1577df61846c7ce51605387b5850.zip |
deprecate DSA backend methods
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index fea935ce..86229125 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -439,6 +439,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: create_dsa_signature_ctx(private_key, algorithm) + .. deprecated:: 0.5 + :param private_key: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey` provider. @@ -452,6 +454,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: create_dsa_verification_ctx(public_key, signature, algorithm) + .. deprecated:: 0.5 + :param public_key: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey` provider. |