diff options
author | Mike Roest <mike.roest@replicon.com> | 2022-04-26 14:40:45 -0600 |
---|---|---|
committer | Mike Roest <mike.roest@replicon.com> | 2022-04-26 14:40:45 -0600 |
commit | d596f798f01a5862c277a3ac9d714470688e77b9 (patch) | |
tree | 5fec7b1eef61730795ab8c00440f23c4236d8ee7 /tests | |
parent | 29c4d3210b745e7d56c328ffebc2513ebfb482fb (diff) |
Remove blowfish from transport ciphers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_transport.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_transport.py b/tests/test_transport.py index b26d36cd..c17a1fc3 100644 --- a/tests/test_transport.py +++ b/tests/test_transport.py @@ -196,9 +196,9 @@ class TransportTest(unittest.TestCase): def test_security_options(self): o = self.tc.get_security_options() self.assertEqual(type(o), SecurityOptions) - self.assertTrue(("aes256-cbc", "blowfish-cbc") != o.ciphers) - o.ciphers = ("aes256-cbc", "blowfish-cbc") - self.assertEqual(("aes256-cbc", "blowfish-cbc"), o.ciphers) + self.assertTrue(("aes256-cbc") != o.ciphers) + o.ciphers = ("aes256-cbc") + self.assertEqual(("aes256-cbc"), o.ciphers) try: o.ciphers = ("aes256-cbc", "made-up-cipher") self.assertTrue(False) |