aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-25 17:59:56 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-25 17:59:56 -0700
commitd55fa5b92e92675ef160c26126feb01751d91fb0 (patch)
tree4f6c1936efb8f72e2dbfb810cf5c49d0b5612aec /tests
parente7e3ed04bb5e7c74e2b61938626fe13c581f2656 (diff)
downloadcryptography-d55fa5b92e92675ef160c26126feb01751d91fb0.tar.gz
cryptography-d55fa5b92e92675ef160c26126feb01751d91fb0.tar.bz2
cryptography-d55fa5b92e92675ef160c26126feb01751d91fb0.zip
make things happy
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_ec.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index 683df046..6aea58a5 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -71,17 +71,7 @@ class DummySignatureAlgorithm(object):
algorithm = None
-@utils.register_interface(EllipticCurveBackend)
class DeprecatedDummyECBackend(object):
- def _unimplemented(self):
- raise NotImplementedError
-
- elliptic_curve_signature_algorithm_supported = _unimplemented
- load_elliptic_curve_private_numbers = _unimplemented
- load_elliptic_curve_public_numbers = _unimplemented
- elliptic_curve_supported = _unimplemented
- generate_elliptic_curve_private_key = _unimplemented
-
def elliptic_curve_private_key_from_numbers(self, numbers):
return b"private_key"