/external/dropbear/libtommath/ |
bn_mp_reduce_setup.c | 21 int mp_reduce_setup (mp_int * a, mp_int * b)
|
bn_mp_add.c | 19 int mp_add (mp_int * a, mp_int * b, mp_int * c)
|
bn_mp_expt_d.c | 19 int mp_expt_d (mp_int * a, mp_digit b, mp_int * c) 22 mp_int g;
|
bn_mp_prime_fermat.c | 26 int mp_prime_fermat (mp_int * a, mp_int * b, int *result) 28 mp_int t;
|
bn_mp_sub.c | 20 mp_sub (mp_int * a, mp_int * b, mp_int * c)
|
bn_mp_and.c | 20 mp_and (mp_int * a, mp_int * b, mp_int * c) 23 mp_int t, *x; 43 /* zero digits above the last from the smallest mp_int */
|
bn_mp_clamp.c | 26 mp_clamp (mp_int * a)
|
bn_mp_dr_is_modulus.c | 19 int mp_dr_is_modulus(mp_int *a)
|
bn_mp_dr_setup.c | 19 void mp_dr_setup(mp_int *a, mp_digit *d)
|
bn_mp_init_set.c | 19 int mp_init_set (mp_int * a, mp_digit b)
|
bn_mp_init_set_int.c | 19 int mp_init_set_int (mp_int * a, unsigned long b)
|
bn_mp_lcm.c | 19 int mp_lcm (mp_int * a, mp_int * b, mp_int * c) 22 mp_int t1, t2;
|
bn_mp_mod_d.c | 19 mp_mod_d (mp_int * a, mp_digit b, mp_digit * c)
|
bn_mp_or.c | 19 int mp_or (mp_int * a, mp_int * b, mp_int * c) 22 mp_int t, *x;
|
bn_mp_reduce_2k_l.c | 22 int mp_reduce_2k_l(mp_int *a, mp_int *n, mp_int *d) 24 mp_int q;
|
bn_mp_set.c | 19 void mp_set (mp_int * a, mp_digit b)
|
bn_mp_to_signed_bin.c | 19 int mp_to_signed_bin (mp_int * a, unsigned char *b)
|
bn_mp_to_signed_bin_n.c | 19 int mp_to_signed_bin_n (mp_int * a, unsigned char *b, unsigned long *outlen)
|
bn_mp_to_unsigned_bin_n.c | 19 int mp_to_unsigned_bin_n (mp_int * a, unsigned char *b, unsigned long *outlen)
|
bn_mp_xor.c | 20 mp_xor (mp_int * a, mp_int * b, mp_int * c) 23 mp_int t, *x;
|
bn_mp_exptmod.c | 24 int mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y) 36 mp_int tmpG, tmpX;
|
bn_mp_mul.c | 19 int mp_mul (mp_int * a, mp_int * b, mp_int * c)
|
/external/dropbear/ |
dss.h | 37 mp_int* p; 38 mp_int* q; 39 mp_int* g; 40 mp_int* y; 41 mp_int* x;
|
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 125 /* the infamous mp_int structure */ 129 } mp_int; typedef in typeref:struct:__anon30754 140 static int s_mp_exptmod(mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode); 141 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs); 142 static int s_mp_sqr(mp_int * a, mp_int * b) [all...] |
/external/dropbear/libtommath/mtest/ |
mpi.c | 61 /* Default precision for newly created mp_int's */ 160 mp_err s_mp_grow(mp_int *mp, mp_size min); /* increase allocated size */ 161 mp_err s_mp_pad(mp_int *mp, mp_size min); /* left pad with zeroes */ 163 void s_mp_clamp(mp_int *mp); /* clip leading zeroes */ 165 void s_mp_exch(mp_int *a, mp_int *b); /* swap a and b in place */ 167 mp_err s_mp_lshd(mp_int *mp, mp_size p); /* left-shift by p digits */ 168 void s_mp_rshd(mp_int *mp, mp_size p); /* right-shift by p digits */ 169 void s_mp_div_2d(mp_int *mp, mp_digit d); /* divide by 2^d in place */ 170 void s_mp_mod_2d(mp_int *mp, mp_digit d); /* modulo 2^d in place * [all...] |