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

  /external/dropbear/
svr-kex.c 68 /* Generate our side of the diffie-hellman key exchange value (dh_f), and
77 DEF_MP_INT(dh_f);
80 m_mp_init_multi(&dh_y, &dh_f, NULL);
82 gen_kexdh_vals(&dh_f, &dh_y);
84 kexdh_comb_key(&dh_f, &dh_y, dh_e, svr_opts.hostkey);
94 buf_putmpint(ses.writepayload, &dh_f);
95 mp_clear(&dh_f);
cli-kex.c 62 DEF_MP_INT(dh_f);
73 m_mp_init(&dh_f);
91 if (buf_getmpint(ses.payload, &dh_f) != DROPBEAR_SUCCESS) {
96 kexdh_comb_key(cli_ses.dh_e, cli_ses.dh_x, &dh_f, hostkey);
97 mp_clear(&dh_f);
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] */
545 dh_f = dh_pub_them;
548 dh_f = dh_pub_us;
557 buf_putmpint(ses.kexhashbuf, dh_f);

Completed in 165 milliseconds