/external/dropbear/libtommath/ |
bn_mp_sqrmod.c | 20 mp_sqrmod (mp_int * a, mp_int * b, mp_int * c) function
|
bn_mp_prime_miller_rabin.c | 74 if ((err = mp_sqrmod (&y, a, &y)) != MP_OKAY) {
|
tommath.h | 366 int mp_sqrmod(mp_int *a, mp_int *b, mp_int *c);
|
/external/dropbear/libtommath/etc/ |
pprime.c | 277 if ((res = mp_sqrmod (&y, &n, &y)) != MP_OKAY) { /* y = x^2a mod n */ 294 if ((res = mp_sqrmod (&y, &n, &y)) != MP_OKAY) { /* y = x^2b mod n */ 311 if ((res = mp_sqrmod (&y, &n, &y)) != MP_OKAY) { /* y = x^2ab mod n */
|
/external/dropbear/libtommath/mtest/ |
mpi.h | 149 mp_err mp_sqrmod(mp_int *a, mp_int *m, mp_int *c); 151 #define mp_sqrmod(a, m, c) mp_mulmod(a, a, m, c) macro
|
mpi.c | 1600 /* {{{ mp_sqrmod(a, m, c) */ 1603 mp_err mp_sqrmod(mp_int *a, mp_int *m, mp_int *c) function [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 485 #define mp_sqrmod(a, b, c) ltc_mp.sqrmod(a, b, c) macro
|
/external/dropbear/libtomcrypt/src/math/ |
ltm_desc.c | 325 return mpi_to_ltc_error(mp_sqrmod(a,b,c));
|
/external/dropbear/libtomcrypt/src/math/fp/ |
ltc_ecc_fp_mulmod.c | [all...] |
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 7345 mp_sqrmod (mp_int * a, mp_int * b, mp_int * c) function [all...] |