| 13 | |
| 14 | |
| 15 | class DummyCipherAlgorithm(CipherAlgorithm): |
| 16 | name = "dummy-cipher" |
| 17 | block_size = 128 |
| 18 | key_size = 256 |
| 19 | key_sizes = frozenset([256]) |
| 20 | |
| 21 | |
| 22 | class DummyBlockCipherAlgorithm(DummyCipherAlgorithm, BlockCipherAlgorithm): |
no outgoing calls