HomeSort by: relevance | last modified time | path
    Searched defs:mp_int (Results 1 - 6 of 6) sorted by relevancy

  /src/sbin/nvmectl/
bn.h 52 typedef struct mp_int { struct
57 } mp_int; typedef in typeref:struct:mp_int
59 #define BIGNUM mp_int
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
bn.h 52 typedef struct mp_int { struct
57 } mp_int; typedef in typeref:struct:mp_int
59 #define BIGNUM mp_int
  /src/external/mit/isl/dist/imath/
imath.h 64 } mpz_t, *mp_int; typedef in typeref:struct:__anon23654
66 static inline mp_digit* MP_DIGITS(mp_int Z) { return Z->digits; }
67 static inline mp_size MP_ALLOC(mp_int Z) { return Z->alloc; }
68 static inline mp_size MP_USED(mp_int Z) { return Z->used; }
69 static inline mp_sign MP_SIGN(mp_int Z) { return Z->sign; }
90 /** Sets the default number of digits allocated to an `mp_int` constructed by
108 static inline bool mp_int_is_odd(mp_int z) { return (z->digits[0] & 1) != 0; }
111 static inline bool mp_int_is_even(mp_int z) { return (z->digits[0] & 1) == 0; }
115 mp_result mp_int_init(mp_int z);
119 mp_int mp_int_alloc(void)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h 180 /* the infamous mp_int structure */
184 } mp_int; typedef in typeref:struct:__anon832
199 int mp_init(mp_int *a);
202 void mp_clear(mp_int *a);
205 int mp_init_multi(mp_int *mp, ...);
208 void mp_clear_multi(mp_int *mp, ...);
211 void mp_exch(mp_int *a, mp_int *b);
214 int mp_shrink(mp_int *a);
217 int mp_grow(mp_int *a, int size)
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bn.h 117 typedef struct mp_int { struct
122 } mp_int; typedef in typeref:struct:mp_int
124 #define PGPV_BIGNUM mp_int
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 117 /* the infamous mp_int structure */
121 } mp_int; typedef in typeref:struct:__anon8475
132 static int s_mp_exptmod(mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode);
133 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
134 static int s_mp_sqr(mp_int * a, mp_int * b)
    [all...]

Completed in 27 milliseconds