HomeSort by relevance Sort by last modified time
    Searched refs:mp_int (Results 76 - 100 of 155) sorted by null

1 2 34 5 6 7

  /external/dropbear/
gendss.c 52 key->p = (mp_int*)m_malloc(sizeof(mp_int));
53 key->q = (mp_int*)m_malloc(sizeof(mp_int));
54 key->g = (mp_int*)m_malloc(sizeof(mp_int));
55 key->y = (mp_int*)m_malloc(sizeof(mp_int));
56 key->x = (mp_int*)m_malloc(sizeof(mp_int));
    [all...]
  /external/dropbear/libtommath/
bn_mp_exteuclid.c 21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3)
23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp;
bn_mp_div_2.c 19 int mp_div_2(mp_int * a, mp_int * b)
bn_mp_mul_2.c 19 int mp_mul_2(mp_int * a, mp_int * b)
bn_mp_mul_d.c 20 mp_mul_d (mp_int * a, mp_digit b, mp_int * c)
bn_mp_prime_is_prime.c 25 int mp_prime_is_prime (mp_int * a, int t, int *result)
27 mp_int b;
bn_mp_radix_size.c 19 int mp_radix_size (mp_int * a, int radix, int *size)
22 mp_int t;
bn_mp_toradix.c 19 int mp_toradix (mp_int * a, char *str, int radix)
22 mp_int t;
bn_mp_toradix_n.c 22 int mp_toradix_n(mp_int * a, char *str, int radix, int maxlen)
25 mp_int t;
bn_s_mp_exptmod.c 23 int s_mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode)
25 mp_int M[TAB_SIZE], res, mu;
28 int (*redux)(mp_int*,mp_int*,mp_int*);
bn_mp_clear.c 20 mp_clear (mp_int * a)
bn_mp_cnt_lsb.c 23 int mp_cnt_lsb(mp_int *a)
bn_mp_gcd.c 19 int mp_gcd (mp_int * a, mp_int * b, mp_int * c)
21 mp_int u, v;
bn_mp_init.c 18 /* init a new mp_int */
19 int mp_init (mp_int * a)
bn_mp_init_size.c 19 int mp_init_size (mp_int * a, int size)
bn_mp_reduce_is_2k.c 19 int mp_reduce_is_2k(mp_int *a)
bn_mp_reduce_is_2k_l.c 19 int mp_reduce_is_2k_l(mp_int *a)
bn_mp_rshd.c 19 void mp_rshd (mp_int * a, int b)
bn_mp_shrink.c 19 int mp_shrink (mp_int * a)
bn_fast_s_mp_mul_digs.c 34 int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs)
bn_fast_s_mp_mul_high_digs.c 27 int fast_s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs)
bn_mp_div_3.c 20 mp_div_3 (mp_int * a, mp_int *c, mp_digit * d)
22 mp_int q;
bn_mp_jacobi.c 21 int mp_jacobi (mp_int * a, mp_int * p, int *c)
23 mp_int a1, p1;
bn_mp_prime_miller_rabin.c 25 int mp_prime_miller_rabin (mp_int * a, mp_int * b, int *result)
27 mp_int n1, y, r;
  /external/dropbear/libtommath/pre_gen/
mpi.c 76 int fast_mp_invmod (mp_int * a, mp_int * b, mp_int * c)
78 mp_int x, y, u, v, B, D;
230 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
414 int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs)
518 int fast_s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs
    [all...]

Completed in 352 milliseconds

1 2 34 5 6 7