comparison kex.h @ 546:568638be7203 agent-client

propagate from branch 'au.asn.ucc.matt.dropbear' (head 899a8851a5edf840b2f7925bcc26ffe99dcac54d) to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 6bbab8364de17bd9ecb1dee5ffb796e48c0380d2)
author Matt Johnston <matt@ucc.asn.au>
date Wed, 01 Jul 2009 04:16:32 +0000
parents d58c478bd399
children 895fbe068f2c 76097ec1a29a
comparison
equal deleted inserted replaced
500:d588e3ea557a 546:568638be7203
35 void kexfirstinitialise(); 35 void kexfirstinitialise();
36 void gen_kexdh_vals(mp_int *dh_pub, mp_int *dh_priv); 36 void gen_kexdh_vals(mp_int *dh_pub, mp_int *dh_priv);
37 void kexdh_comb_key(mp_int *dh_pub_us, mp_int *dh_priv, mp_int *dh_pub_them, 37 void kexdh_comb_key(mp_int *dh_pub_us, mp_int *dh_priv, mp_int *dh_pub_them,
38 sign_key *hostkey); 38 sign_key *hostkey);
39 39
40 #ifndef DISABLE_ZLIB
41 int is_compress_trans();
42 int is_compress_recv();
43 #endif
44
40 void recv_msg_kexdh_init(); /* server */ 45 void recv_msg_kexdh_init(); /* server */
41 46
42 void send_msg_kexdh_init(); /* client */ 47 void send_msg_kexdh_init(); /* client */
43 void recv_msg_kexdh_reply(); /* client */ 48 void recv_msg_kexdh_reply(); /* client */
44 49