Home
last modified time | relevance | path

Searched refs:mu (Results 1 – 2 of 2) sorted by relevance

/hostap-latest/src/tls/
Dlibtommath.c176 static int mp_reduce(mp_int * x, mp_int * m, mp_int * mu);
1877 mp_int M[TAB_SIZE], res, mu; in s_mp_exptmod() local
1924 if ((err = mp_init (&mu)) != MP_OKAY) { in s_mp_exptmod()
1929 if ((err = mp_reduce_setup (&mu, P)) != MP_OKAY) { in s_mp_exptmod()
1934 if ((err = mp_reduce_2k_setup_l (P, &mu)) != MP_OKAY) { in s_mp_exptmod()
1967 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
1979 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
2028 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
2045 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
2054 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
[all …]
/hostap-latest/src/crypto/
Dcrypto_wolfssl.c1937 mp_int mu; in crypto_ec_point_add() local
1946 ret = mp_init(&mu); in crypto_ec_point_add()
1950 ret = mp_montgomery_calc_normalization(&mu, modulus); in crypto_ec_point_add()
1952 mp_clear(&mu); in crypto_ec_point_add()
1956 if (!mp_isone(&mu)) { in crypto_ec_point_add()
1959 mp_clear(&mu); in crypto_ec_point_add()
1965 mp_clear(&mu); in crypto_ec_point_add()
1969 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || in crypto_ec_point_add()
1970 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || in crypto_ec_point_add()
1971 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add()
[all …]