diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-01 11:09:32 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-01 11:09:32 -0500 |
commit | db72657c6874db143d86629d60efe318678cd980 (patch) | |
tree | 06f378681ece28bb6294b9b7441b885434d22c59 /tests/hazmat | |
parent | c37ad5799f2ceeaecb821f6bdf06b9e08e7ffc41 (diff) | |
download | cryptography-db72657c6874db143d86629d60efe318678cd980.tar.gz cryptography-db72657c6874db143d86629d60efe318678cd980.tar.bz2 cryptography-db72657c6874db143d86629d60efe318678cd980.zip |
update multibackend to remove deprecated methods
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/backends/test_multibackend.py | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/tests/hazmat/backends/test_multibackend.py b/tests/hazmat/backends/test_multibackend.py index 61bda54c..93934ad6 100644 --- a/tests/hazmat/backends/test_multibackend.py +++ b/tests/hazmat/backends/test_multibackend.py @@ -95,28 +95,12 @@ class DummyRSABackend(object): def generate_rsa_private_key(self, public_exponent, private_key): pass - def create_rsa_signature_ctx(self, private_key, padding, algorithm): - pass - - def create_rsa_verification_ctx(self, public_key, signature, padding, - algorithm): - pass - - def mgf1_hash_supported(self, algorithm): - pass - def rsa_padding_supported(self, padding): pass def generate_rsa_parameters_supported(self, public_exponent, key_size): pass - def decrypt_rsa(self, private_key, ciphertext, padding): - pass - - def encrypt_rsa(self, public_key, plaintext, padding): - pass - def load_rsa_private_numbers(self, numbers): pass @@ -135,12 +119,6 @@ class DummyDSABackend(object): def generate_dsa_private_key_and_parameters(self, key_size): pass - def create_dsa_signature_ctx(self, private_key, algorithm): - pass - - def create_dsa_verification_ctx(self, public_key, signature, algorithm): - pass - def dsa_hash_supported(self, algorithm): pass @@ -303,22 +281,10 @@ class TestMultiBackend(object): key_size=1024, public_exponent=65537 ) - backend.create_rsa_signature_ctx("private_key", padding.PKCS1v15(), - hashes.MD5()) - - backend.create_rsa_verification_ctx("public_key", "sig", - padding.PKCS1v15(), hashes.MD5()) - - backend.mgf1_hash_supported(hashes.MD5()) - backend.rsa_padding_supported(padding.PKCS1v15()) backend.generate_rsa_parameters_supported(65537, 1024) - backend.encrypt_rsa("public_key", "encryptme", padding.PKCS1v15()) - - backend.decrypt_rsa("private_key", "encrypted", padding.PKCS1v15()) - backend.load_rsa_private_numbers("private_numbers") backend.load_rsa_public_numbers("public_numbers") @@ -332,23 +298,6 @@ class TestMultiBackend(object): with raises_unsupported_algorithm( _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM ): - backend.create_rsa_signature_ctx("private_key", padding.PKCS1v15(), - hashes.MD5()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): - backend.create_rsa_verification_ctx( - "public_key", "sig", padding.PKCS1v15(), hashes.MD5()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): - backend.mgf1_hash_supported(hashes.MD5()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): backend.rsa_padding_supported(padding.PKCS1v15()) with raises_unsupported_algorithm( @@ -359,16 +308,6 @@ class TestMultiBackend(object): with raises_unsupported_algorithm( _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM ): - backend.encrypt_rsa("public_key", "encryptme", padding.PKCS1v15()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): - backend.decrypt_rsa("private_key", "encrypted", padding.PKCS1v15()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): backend.load_rsa_private_numbers("private_numbers") with raises_unsupported_algorithm( @@ -387,8 +326,6 @@ class TestMultiBackend(object): backend.generate_dsa_private_key(parameters) backend.generate_dsa_private_key_and_parameters(key_size=1024) - backend.create_dsa_verification_ctx("public_key", "sig", hashes.SHA1()) - backend.create_dsa_signature_ctx("private_key", hashes.SHA1()) backend.dsa_hash_supported(hashes.SHA1()) backend.dsa_parameters_supported(1, 2, 3) backend.load_dsa_private_numbers("numbers") @@ -413,18 +350,6 @@ class TestMultiBackend(object): with raises_unsupported_algorithm( _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM ): - backend.create_dsa_signature_ctx("private_key", hashes.SHA1()) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): - backend.create_dsa_verification_ctx( - "public_key", b"sig", hashes.SHA1() - ) - - with raises_unsupported_algorithm( - _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM - ): backend.dsa_hash_supported(hashes.SHA1()) with raises_unsupported_algorithm( |