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

  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_rand.c 230 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range) function
297 int BN_rand_range(BIGNUM *r, const BIGNUM *range)
299 return bn_rand_range(0, r, range);
304 return bn_rand_range(1, r, range);
  /external/openssl/crypto/bn/
bn_rand.c 231 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range) function
298 int BN_rand_range(BIGNUM *r, const BIGNUM *range)
300 return bn_rand_range(0, r, range);
305 return bn_rand_range(1, r, range);
310 * BN_rand_range, it also includes the contents of |priv| and |message| in the

Completed in 39 milliseconds