comparison svr-kex.c @ 603:3aa74a4d83ae

Refer to RFCs rather than drafts, update some section references
author Matt Johnston <matt@ucc.asn.au>
date Sun, 27 Feb 2011 13:57:32 +0000
parents 454a34b2dfd1
children 2b1bb792cd4d b07eb3dc23ec 2f1c199b6e4b
comparison
equal deleted inserted replaced
602:2d896267f16d 603:3aa74a4d83ae
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(mp_int *dh_e) { 74 static void send_msg_kexdh_reply(mp_int *dh_e) {
75 75
76 DEF_MP_INT(dh_y); 76 DEF_MP_INT(dh_y);
77 DEF_MP_INT(dh_f); 77 DEF_MP_INT(dh_f);
78 78