comparison common-algo.c @ 740:3062da90dab8 kexguess

Add kexguess2 behaviour
author Matt Johnston <matt@ucc.asn.au>
date Fri, 29 Mar 2013 23:29:48 +0800
parents cd3d3c63d189
children eafdf8b363f5
comparison
equal deleted inserted replaced
739:d44325108d0e 740:3062da90dab8
213 }; 213 };
214 214
215 algo_type sshkex[] = { 215 algo_type sshkex[] = {
216 {"diffie-hellman-group1-sha1", DROPBEAR_KEX_DH_GROUP1, NULL, 1, NULL}, 216 {"diffie-hellman-group1-sha1", DROPBEAR_KEX_DH_GROUP1, NULL, 1, NULL},
217 {"diffie-hellman-group14-sha1", DROPBEAR_KEX_DH_GROUP14, NULL, 1, NULL}, 217 {"diffie-hellman-group14-sha1", DROPBEAR_KEX_DH_GROUP14, NULL, 1, NULL},
218 {KEXGUESS2_ALGO_NAME, KEXGUESS2_ALGO_ID, NULL, 1, NULL},
218 {NULL, 0, NULL, 0, NULL} 219 {NULL, 0, NULL, 0, NULL}
219 }; 220 };
220 221
221 222
222 /* Register the compiled in ciphers. 223 /* Register the compiled in ciphers.