Home
last modified time | relevance | path

Searched refs:mp_mulmod (Results 1 – 3 of 3) sorted by relevance

/external/wpa_supplicant_8/src/crypto/
Dcrypto_wolfssl.c1214 return mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) m, in crypto_bignum_mulmod()
1568 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || in crypto_ec_point_add()
1569 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || in crypto_ec_point_add()
1570 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add()
1571 mp_mulmod(pb->x, &mu, modulus, tb->x) != MP_OKAY || in crypto_ec_point_add()
1572 mp_mulmod(pb->y, &mu, modulus, tb->y) != MP_OKAY || in crypto_ec_point_add()
1573 mp_mulmod(pb->z, &mu, modulus, tb->z) != MP_OKAY) { in crypto_ec_point_add()
1672 mp_mulmod((mp_int *) x, y2, &e->prime, y2) != 0 || in crypto_ec_point_compute_y_sqr()
1673 mp_mulmod((mp_int *) x, &e->a, &e->prime, &t) != 0 || in crypto_ec_point_compute_y_sqr()
/external/wpa_supplicant_8/src/tls/
Dbignum.c198 if (mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) c, (mp_int *) d) in bignum_mulmod()
Dlibtommath.c540 static int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_mulmod() function
3087 if ((err = mp_mulmod (G, &res, P, &M[1])) != MP_OKAY) { in mp_exptmod_fast()