HomeSort by relevance Sort by last modified time
    Searched refs:mp_int (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_8/src/tls/
bignum.c 23 * struct bignum is just typecast to mp_int.
32 struct bignum *n = os_zalloc(sizeof(mp_int));
35 if (mp_init((mp_int *) n) != MP_OKAY) {
50 mp_clear((mp_int *) n);
63 return mp_unsigned_bin_size((mp_int *) n);
77 size_t need = mp_unsigned_bin_size((mp_int *) n);
82 if (mp_to_unsigned_bin((mp_int *) n, buf) != MP_OKAY) {
101 if (mp_read_unsigned_bin((mp_int *) n, (u8 *) buf, len) != MP_OKAY) {
117 return mp_cmp((mp_int *) a, (mp_int *) b)
    [all...]
libtommath.c 125 /* the infamous mp_int structure */
129 } mp_int; typedef in typeref:struct:__anon27175
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...]

Completed in 37 milliseconds