Home | History | Annotate | Download | only in dropbear

Lines Matching defs:dh_p

476 	DEF_MP_INT(dh_p);
482 m_mp_init_multi(&dh_g, &dh_p, &dh_q, NULL);
485 bytes_to_mp(&dh_p, (unsigned char*)dh_p_val, DH_P_LEN);
493 if (mp_sub_d(&dh_p, 1, dh_priv) != MP_OKAY) {
504 if (mp_exptmod(&dh_g, dh_priv, &dh_p, dh_pub) != MP_OKAY) {
507 mp_clear_multi(&dh_g, &dh_p, &dh_q, NULL);
517 mp_int dh_p;
522 m_mp_init(&dh_p);
523 bytes_to_mp(&dh_p, dh_p_val, DH_P_LEN);
526 if (mp_cmp(dh_pub_them, &dh_p) != MP_LT
534 if (mp_exptmod(dh_pub_them, dh_priv, &dh_p, ses.dh_K) != MP_OKAY) {
539 mp_clear_multi(&dh_p, NULL);