/external/dropbear/libtommath/ |
bn_mp_lcm.c | 30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) {
|
bn_mp_gcd.c | 19 int mp_gcd (mp_int * a, mp_int * b, mp_int * c) function
|
tommath.h | 372 int mp_gcd(mp_int *a, mp_int *b, mp_int *c);
|
bn.tex | [all...] |
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_make_key.c | 60 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(p-1, e) */ 67 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(q-1, e) */
|
/external/dropbear/ |
genrsa.c | 125 if (mp_gcd(primeminus, rsa_e, &temp_gcd) != MP_OKAY) {
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_make_key.c | 58 if ((err = mp_gcd(p, tmp1, tmp2)) != CRYPT_OK) { goto done; }
|
/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_sign_hash.c | 80 if ((err = mp_gcd(k, key->q, tmp)) != CRYPT_OK) { goto error; }
|
/external/dropbear/libtommath/mtest/ |
mtest.c | 209 mp_gcd(&a, &b, &c); 254 mp_gcd(&a, &b, &c);
|
mpi.h | 172 mp_err mp_gcd(mp_int *a, mp_int *b, mp_int *c);
|
mpi.c | 1919 mp_err mp_gcd(mp_int *a, mp_int *b, mp_int *c) function [all...] |
/external/dropbear/libtommath/demo/ |
timing.c | 291 mp_gcd(&a, &b, &c);
|
demo.c | 600 mp_gcd(&d, &b, &d); 666 mp_gcd(&a, &b, &e);
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 481 #define mp_gcd(a, b, c) ltc_mp.gcd(a, b, c) macro
|
/external/dropbear/libtommath/etc/ |
pprime.c | 256 if ((res = mp_gcd (&n, &v, &y)) != MP_OKAY) { /* y = (n, v) */
|
/external/dropbear/libtomcrypt/src/math/ |
ltm_desc.c | 299 return mpi_to_ltc_error(mp_gcd(a, b, c));
|
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 3174 int mp_gcd (mp_int * a, mp_int * b, mp_int * c) function [all...] |