Searched refs:mp_mulmod (Results 1 – 3 of 3) sorted by relevance
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_wolfssl.c | 1179 return mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) m, in crypto_bignum_mulmod() 1515 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || in crypto_ec_point_add() 1516 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || in crypto_ec_point_add() 1517 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add() 1518 mp_mulmod(pb->x, &mu, modulus, tb->x) != MP_OKAY || in crypto_ec_point_add() 1519 mp_mulmod(pb->y, &mu, modulus, tb->y) != MP_OKAY || in crypto_ec_point_add() 1520 mp_mulmod(pb->z, &mu, modulus, tb->z) != MP_OKAY) { in crypto_ec_point_add() 1619 mp_mulmod((mp_int *) x, y2, &e->prime, y2) != 0 || in crypto_ec_point_compute_y_sqr() 1620 mp_mulmod((mp_int *) x, &e->a, &e->prime, &t) != 0 || in crypto_ec_point_compute_y_sqr()
|
/external/wpa_supplicant_8/src/tls/ |
D | bignum.c | 198 if (mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) c, (mp_int *) d) in bignum_mulmod()
|
D | libtommath.c | 540 static int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_mulmod() function 3086 if ((err = mp_mulmod (G, &res, P, &M[1])) != MP_OKAY) { in mp_exptmod_fast()
|