Home
last modified time | relevance | path

Searched refs:mp_exptmod (Results 1 – 5 of 5) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dbignum.c218 if (mp_exptmod((mp_int *) a, (mp_int *) b, (mp_int *) c, (mp_int *) d) in bignum_exptmod()
Dlibtommath.c591 static int mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y) in mp_exptmod() function
629 err = mp_exptmod(&tmpG, &tmpX, P, Y); in mp_exptmod()
633 #error mp_exptmod would always fail in mp_exptmod()
672 #error mp_exptmod could fail in mp_exptmod()
/external/wpa_supplicant_8/src/crypto/
Dcrypto_libtomcrypt.c21 #define mp_exptmod(a,b,c,d) ltc_mp.exptmod(a,b,c,d) macro
753 if (mp_exptmod(b, p, m, r) != CRYPT_OK) in crypto_mod_exp()
Dcrypto_wolfssl.c1189 return mp_exptmod((mp_int *) b, (mp_int *) e, (mp_int *) m, in crypto_bignum_exptmod()
1320 ret = mp_exptmod((mp_int *) a, &t, (mp_int *) p, &t); in crypto_bignum_legendre()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/wolf/
DTpmToWolfMath.c322 OK = (mp_exptmod( bnN, bnE, bnM, bnResult ) == MP_OKAY); in BnModExp()