Mercurial > dropbear
comparison svr-kex.c @ 641:2b1bb792cd4d dropbear-tfm
- Update tfm changes to current default tip
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 21 Nov 2011 19:52:28 +0800 |
parents | 76097ec1a29a 3aa74a4d83ae |
children |
comparison
equal
deleted
inserted
replaced
640:76097ec1a29a | 641:2b1bb792cd4d |
---|---|
68 /* Generate our side of the diffie-hellman key exchange value (dh_f), and | 68 /* Generate our side of the diffie-hellman key exchange value (dh_f), and |
69 * calculate the session key using the diffie-hellman algorithm. Following | 69 * calculate the session key using the diffie-hellman algorithm. Following |
70 * that, the session hash is calculated, and signed with RSA or DSS. The | 70 * that, the session hash is calculated, and signed with RSA or DSS. The |
71 * result is sent to the client. | 71 * result is sent to the client. |
72 * | 72 * |
73 * See the ietf-secsh-transport draft, section 6, for details */ | 73 * See the transport rfc 4253 section 8 for details */ |
74 static void send_msg_kexdh_reply(fp_int *dh_e) { | 74 static void send_msg_kexdh_reply(fp_int *dh_e) { |
75 | 75 |
76 DEF_FP_INT(dh_y); | 76 DEF_FP_INT(dh_y); |
77 DEF_FP_INT(dh_f); | 77 DEF_FP_INT(dh_f); |
78 | 78 |