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

  /src/sbin/nvmectl/
bn.h 59 #define BIGNUM mp_int
66 BIGNUM **v;
88 BIGNUM *BN_new(void);
89 BIGNUM *BN_dup(const BIGNUM */*a*/);
90 int BN_copy(BIGNUM */*b*/, const BIGNUM */*a*/);
92 void BN_init(BIGNUM */*a*/);
93 void BN_free(BIGNUM */*a*/);
94 void BN_clear(BIGNUM */*a*/)
    [all...]
  /src/games/factor/
factor.c 94 static void pollard_pminus1(BIGNUM *, int, int);
98 typedef long BIGNUM;
103 #define BN_new() calloc(sizeof(BIGNUM), 1)
112 static BIGNUM *BN_dup(const BIGNUM *);
113 static int BN_dec2bn(BIGNUM **, const char *);
114 static int BN_hex2bn(BIGNUM **, const char *);
115 static BN_ULONG BN_div_word(BIGNUM *, BN_ULONG);
116 static void BN_print_fp(FILE *, const BIGNUM *);
120 static void BN_print_dec_fp(FILE *, const BIGNUM *);
    [all...]

Completed in 11 milliseconds