diff options
Diffstat (limited to 'docs/hazmat/backends')
-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. |