Updates the SSH analyzer to support the "curve25519-sha256" KEX.

From the OpenSSH 7.4 changelog:

sshd(8), ssh(1): Support the "curve25519-sha256" key exchange
   method. This is identical to the currently-supported method named
   "curve25519-sha256@libssh.org".
This commit is contained in:
Vlad Grigorescu 2017-09-15 20:30:39 -05:00
parent 8ce746cc25
commit 7e374f8c3f

View file

@ -410,7 +410,7 @@ refine connection SSH_Conn += {
return true; return true;
if ( update_kex_state_if_equal("ecmqv-sha2", KEX_ECC) ) if ( update_kex_state_if_equal("ecmqv-sha2", KEX_ECC) )
return true; return true;
if ( update_kex_state_if_equal("curve25519-sha256@libssh.org", KEX_ECC) ) if ( update_kex_state_if_startswith("curve25519-sha256", KEX_ECC) )
return true; return true;