/external/dropbear/libtommath/ |
bn_mp_n_root.c | 28 int mp_n_root (mp_int * a, mp_digit b, mp_int * c) 30 mp_int t1, t2, t3;
|
bn_fast_mp_invmod.c | 24 int fast_mp_invmod (mp_int * a, mp_int * b, mp_int * c) 26 mp_int x, y, u, v, B, D;
|
bn_mp_fwrite.c | 18 int mp_fwrite(mp_int *a, int radix, FILE *stream)
|
bn_mp_grow.c | 19 int mp_grow (mp_int * a, int size)
|
bn_mp_karatsuba_mul.c | 47 int mp_karatsuba_mul (mp_int * a, mp_int * b, mp_int * c) 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1;
|
bn_mp_montgomery_setup.c | 20 mp_montgomery_setup (mp_int * n, mp_digit * rho)
|
bn_mp_rand.c | 20 mp_rand (mp_int * a, int digits)
|
bn_mp_read_unsigned_bin.c | 19 int mp_read_unsigned_bin (mp_int * a, const unsigned char *b, int c)
|
bn_mp_add_d.c | 20 mp_add_d (mp_int * a, mp_digit b, mp_int * c)
|
bn_mp_dr_reduce.c | 33 mp_dr_reduce (mp_int * x, mp_int * n, mp_digit k)
|
bn_mp_is_square.c | 41 int mp_is_square(mp_int *arg,int *ret) 45 mp_int t;
|
bn_mp_montgomery_reduce.c | 20 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
|
bn_mp_mul_2d.c | 19 int mp_mul_2d (mp_int * a, int b, mp_int * c)
|
bn_mp_sub_d.c | 20 mp_sub_d (mp_int * a, mp_digit b, mp_int * c)
|
bn_mp_div.c | 21 int mp_div(mp_int * a, mp_int * b, mp_int * c, mp_int * d) 23 mp_int ta, tb, tq, q; 103 int mp_div (mp_int * a, mp_int * b, mp_int * c, mp_int * d) 105 mp_int q, x, y, t1, t2 [all...] |
bn.tex | 343 \} mp_int; 381 int mp_init (mp_int * a); 391 mp_int number; 412 void mp_clear (mp_int * a); 422 mp_int number; 449 int mp_init_multi(mp_int *mp, ...); 460 mp_int num1, num2, num3; 485 int mp_init_copy (mp_int * a, mp_int * b); 493 mp_int num1, num2 [all...] |
bn_mp_exptmod_fast.c | 32 int mp_exptmod_fast (mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode) 34 mp_int M[TAB_SIZE], res; 42 int (*redux)(mp_int*,mp_int*,mp_digit);
|
bn_mp_karatsuba_sqr.c | 25 int mp_karatsuba_sqr (mp_int * a, mp_int * b) 27 mp_int x0, x1, t1, t2, x0x0, x1x1;
|
bn_mp_fread.c | 19 int mp_fread(mp_int *a, int radix, FILE *stream)
|
bn_mp_invmod_slow.c | 19 int mp_invmod_slow (mp_int * a, mp_int * b, mp_int * c) 21 mp_int x, y, u, v, A, B, C, D;
|
bn_mp_lshd.c | 19 int mp_lshd (mp_int * a, int b)
|
bn_mp_read_radix.c | 19 int mp_read_radix (mp_int * a, const char *str, int radix)
|
/external/dropbear/ |
buffer.h | 62 void buf_putmpint(buffer* buf, mp_int * mp); 63 int buf_getmpint(buffer* buf, mp_int* mp);
|
svr-kex.c | 39 static void send_msg_kexdh_reply(mp_int *dh_e); 74 static void send_msg_kexdh_reply(mp_int *dh_e) {
|
/external/dropbear/libtommath/etc/ |
mont.c | 6 mp_int modulus, R, p, pp;
|