HomeSort by relevance Sort by last modified time
    Searched refs:dh_e (Results 1 - 4 of 4) sorted by null

  /external/dropbear/
svr-kex.c 39 static void send_msg_kexdh_reply(mp_int *dh_e);
47 DEF_MP_INT(dh_e);
54 m_mp_init(&dh_e);
55 if (buf_getmpint(ses.payload, &dh_e) != DROPBEAR_SUCCESS) {
59 send_msg_kexdh_reply(&dh_e);
61 mp_clear(&dh_e);
74 static void send_msg_kexdh_reply(mp_int *dh_e) {
84 kexdh_comb_key(&dh_f, &dh_y, dh_e, svr_opts.hostkey);
cli-kex.c 46 cli_ses.dh_e = (mp_int*)m_malloc(sizeof(mp_int));
48 m_mp_init_multi(cli_ses.dh_e, cli_ses.dh_x, NULL);
50 gen_kexdh_vals(cli_ses.dh_e, cli_ses.dh_x);
54 buf_putmpint(ses.writepayload, cli_ses.dh_e);
96 kexdh_comb_key(cli_ses.dh_e, cli_ses.dh_x, &dh_f, hostkey);
98 mp_clear_multi(cli_ses.dh_e, cli_ses.dh_x, NULL);
99 m_free(cli_ses.dh_e);
session.h 210 mp_int *dh_e, *dh_x; /* Used during KEX */ member in struct:clientsession
common-kex.c 511 * of dh_e/dh_f etc. Hence these arguments:
518 mp_int *dh_e = NULL, *dh_f = NULL; local
525 /* Check that dh_pub_them (dh_e or dh_f) is in the range [1, p-1] */
544 dh_e = dh_pub_us;
547 dh_e = dh_pub_them;
555 buf_putmpint(ses.kexhashbuf, dh_e);

Completed in 36 milliseconds