aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-06-29 11:30:18 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-06-29 11:30:18 +0100
commitf6e292027399a3ab71947faef54885ec4f3e79a0 (patch)
treee3f147c536abe445a702ad830b41be93dc29a8c5
parentb86e364ed0314cb2873109541de7d42f015e86e7 (diff)
parent1262be2b8e1b1577df61846c7ce51605387b5850 (diff)
downloadcryptography-f6e292027399a3ab71947faef54885ec4f3e79a0.tar.gz
cryptography-f6e292027399a3ab71947faef54885ec4f3e79a0.tar.bz2
cryptography-f6e292027399a3ab71947faef54885ec4f3e79a0.zip
Merge pull request #1191 from reaperhulk/dsa-deprecate-backend-methods
deprecate DSA backend methods
-rw-r--r--CHANGELOG.rst2
-rw-r--r--cryptography/hazmat/backends/openssl/backend.py12
-rw-r--r--docs/hazmat/backends/interfaces.rst4
-rw-r--r--tests/hazmat/backends/test_openssl.py22
4 files changed, 40 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 91742e2e..e057b636 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -40,6 +40,8 @@ Changelog
* Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and
``create_rsa_verification_ctx`` on
:class:`~cryptography.hazmat.backends.interfaces.RSABackend`.
+* Deprecated ``create_dsa_signature_ctx`` and ``create_dsa_verification_ctx``
+ on :class:`~cryptography.hazmat.backends.interfaces.DSABackend`.
0.4 - 2014-05-03
~~~~~~~~~~~~~~~~
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py
index b3396ea9..087dc494 100644
--- a/cryptography/hazmat/backends/openssl/backend.py
+++ b/cryptography/hazmat/backends/openssl/backend.py
@@ -634,12 +634,24 @@ class Backend(object):
return self.generate_dsa_private_key(parameters)
def create_dsa_signature_ctx(self, private_key, algorithm):
+ warnings.warn(
+ "create_dsa_signature_ctx is deprecated and will be removed in "
+ "a future version.",
+ utils.DeprecatedIn05,
+ stacklevel=2
+ )
dsa_cdata = self._dsa_cdata_from_private_key(private_key)
key = _DSAPrivateKey(self, dsa_cdata)
return _DSASignatureContext(self, key, algorithm)
def create_dsa_verification_ctx(self, public_key, signature,
algorithm):
+ warnings.warn(
+ "create_dsa_verification_ctx is deprecated and will be removed in "
+ "a future version.",
+ utils.DeprecatedIn05,
+ stacklevel=2
+ )
dsa_cdata = self._dsa_cdata_from_public_key(public_key)
key = _DSAPublicKey(self, dsa_cdata)
return _DSAVerificationContext(self, key, signature, algorithm)
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.
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index bd99c8f2..696a0f73 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -524,3 +524,25 @@ class TestDeprecatedRSABackendMethods(object):
ct,
padding.PKCS1v15()
)
+
+
+class TestDeprecatedDSABackendMethods(object):
+ def test_create_dsa_signature_ctx(self):
+ params = dsa.DSAParameters.generate(1024, backend)
+ key = dsa.DSAPrivateKey.generate(params, backend)
+ pytest.deprecated_call(
+ backend.create_dsa_signature_ctx,
+ key,
+ hashes.SHA1()
+ )
+
+ def test_create_dsa_verification_ctx(self):
+ params = dsa.DSAParameters.generate(1024, backend)
+ key = dsa.DSAPrivateKey.generate(params, backend)
+ public_key = key.public_key()
+ pytest.deprecated_call(
+ backend.create_dsa_verification_ctx,
+ public_key,
+ b"\x00" * 128,
+ hashes.SHA1()
+ )