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

  /src/sbin/nvmectl/
bn.h 67 } BN_CTX;
111 int BN_mul(BIGNUM */*r*/, const BIGNUM */*a*/, const BIGNUM */*b*/, BN_CTX */*ctx*/);
112 int BN_div(BIGNUM */*q*/, BIGNUM */*r*/, const BIGNUM */*a*/, const BIGNUM */*b*/, BN_CTX */*ctx*/);
125 int BN_mod_exp(BIGNUM */*r*/, BIGNUM */*a*/, BIGNUM */*p*/, BIGNUM */*m*/, BN_CTX */*ctx*/);
126 BIGNUM *BN_mod_inverse(BIGNUM */*ret*/, BIGNUM */*a*/, const BIGNUM */*n*/, BN_CTX */*ctx*/);
127 int BN_mod_mul(BIGNUM */*ret*/, BIGNUM */*a*/, BIGNUM */*b*/, const BIGNUM */*m*/, BN_CTX */*ctx*/);
128 int BN_mod_sub(BIGNUM */*r*/, BIGNUM */*a*/, BIGNUM */*b*/, const BIGNUM */*m*/, BN_CTX */*ctx*/);
133 BN_CTX *BN_CTX_new(void);
134 BIGNUM *BN_CTX_get(BN_CTX */*ctx*/);
135 void BN_CTX_start(BN_CTX */*ctx*/)
    [all...]
  /src/games/factor/
factor.c 101 #define BN_CTX int
126 static BN_CTX *ctx; /* just use a global context */

Completed in 12 milliseconds