diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-06-05 19:30:47 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-06-05 19:30:47 -0700 |
commit | 1ffccb0efe829de4aa81a2bcce446d67918cab1c (patch) | |
tree | dd62ccff6f3dabed310f393a633d2a69e70e1605 /tests | |
parent | ba492dfa396bc9255f2d9223004aaa1d1071d7b4 (diff) | |
parent | cbec93b9a466ec8dad856f89e90e5401e70730b6 (diff) |
Merge branch '2.0' into 2.1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_transport.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_transport.py b/tests/test_transport.py index 2ebdf854..c426cef1 100644 --- a/tests/test_transport.py +++ b/tests/test_transport.py @@ -165,6 +165,15 @@ class TransportTest(unittest.TestCase): except TypeError: pass + def test_1b_security_options_reset(self): + o = self.tc.get_security_options() + # should not throw any exceptions + o.ciphers = o.ciphers + o.digests = o.digests + o.key_types = o.key_types + o.kex = o.kex + o.compression = o.compression + def test_2_compute_key(self): self.tc.K = 123281095979686581523377256114209720774539068973101330872763622971399429481072519713536292772709507296759612401802191955568143056534122385270077606457721553469730659233569339356140085284052436697480759510519672848743794433460113118986816826624865291116513647975790797391795651716378444844877749505443714557929 self.tc.H = b'\x0C\x83\x07\xCD\xE6\x85\x6F\xF3\x0B\xA9\x36\x84\xEB\x0F\x04\xC2\x52\x0E\x9E\xD3' |