diff options
author | Robey Pointer <robey@lag.net> | 2007-10-28 20:05:20 -0700 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2007-10-28 20:05:20 -0700 |
commit | 758c18a28b1ff5df1a920d02ef1e9df52853a677 (patch) | |
tree | 27ed521627e1764c9ac78e311ac162b193701336 /tests | |
parent | e3d9b90ea1f25792e652a0809b37b52635243932 (diff) |
[project @ robey@lag.net-20071029030520-ozmne7y4l6037m8h]
bug discovered while porting to jaramiko: old-style gex wasn't creating
the proper hash. fixed.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_kex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_kex.py b/tests/test_kex.py index 1989117f..f3042753 100644 --- a/tests/test_kex.py +++ b/tests/test_kex.py @@ -179,7 +179,7 @@ class KexTest (unittest.TestCase): msg.add_string('fake-sig') msg.rewind() kex.parse_next(paramiko.kex_gex._MSG_KEXDH_GEX_REPLY, msg) - H = 'A265563F2FA87F1A89BF007EE90D58BE2E4A4BD0' + H = '807F87B269EF7AC5EC7E75676808776A27D5864C' self.assertEquals(self.K, transport._K) self.assertEquals(H, hexlify(transport._H).upper()) self.assertEquals(('fake-host-key', 'fake-sig'), transport._verify) |