aboutsummaryrefslogtreecommitdiffstats
path: root/tests/doubles.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-06 16:40:04 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-06 16:40:04 -0400
commit1c6155a9aa47399ef17f23a169bc1233cec1bec3 (patch)
tree3a51676fbd8fbe147f61088e3e64dad6a7654d6e /tests/doubles.py
parent4a3741e0d3dbf962e3e55b973968f625e2a1f544 (diff)
parent53e7b24e1ff91de415d2f128b1463bea33b756a9 (diff)
downloadcryptography-1c6155a9aa47399ef17f23a169bc1233cec1bec3.tar.gz
cryptography-1c6155a9aa47399ef17f23a169bc1233cec1bec3.tar.bz2
cryptography-1c6155a9aa47399ef17f23a169bc1233cec1bec3.zip
Merge pull request #2762 from alex/dedupe-doubles
Un-double the test doubles
Diffstat (limited to 'tests/doubles.py')
-rw-r--r--tests/doubles.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/doubles.py b/tests/doubles.py
new file mode 100644
index 00000000..2ff1942f
--- /dev/null
+++ b/tests/doubles.py
@@ -0,0 +1,43 @@
+# This file is dual licensed under the terms of the Apache License, Version
+# 2.0, and the BSD License. See the LICENSE file in the root of this repository
+# for complete details.
+
+from __future__ import absolute_import, division, print_function
+
+from cryptography import utils
+from cryptography.hazmat.primitives import hashes, serialization
+from cryptography.hazmat.primitives.asymmetric import padding
+from cryptography.hazmat.primitives.ciphers import CipherAlgorithm
+from cryptography.hazmat.primitives.ciphers.modes import Mode
+
+
+@utils.register_interface(CipherAlgorithm)
+class DummyCipherAlgorithm(object):
+ name = "dummy-cipher"
+ block_size = 128
+ key_size = None
+
+
+@utils.register_interface(Mode)
+class DummyMode(object):
+ name = "dummy-mode"
+
+ def validate_for_algorithm(self, algorithm):
+ pass
+
+
+@utils.register_interface(hashes.HashAlgorithm)
+class DummyHashAlgorithm(object):
+ name = "dummy-hash"
+ block_size = None
+ digest_size = None
+
+
+@utils.register_interface(serialization.KeySerializationEncryption)
+class DummyKeySerializationEncryption(object):
+ pass
+
+
+@utils.register_interface(padding.AsymmetricPadding)
+class DummyAsymmetricPadding(object):
+ name = "dummy-padding"