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

  /external/chromium_org/third_party/boringssl/src/crypto/bn/
random.c 253 const unsigned num_k_bytes = BN_num_bytes(range); local
268 k_bytes = OPENSSL_malloc(num_k_bytes);
288 for (done = 0; done < num_k_bytes;) {
300 todo = num_k_bytes - done;
310 if (!BN_bin2bn(k_bytes, num_k_bytes, out)) {
  /external/openssl/crypto/bn/
bn_rand.c 325 const unsigned num_k_bytes = BN_num_bytes(range) + 8; local
330 k_bytes = OPENSSL_malloc(num_k_bytes);
347 for (done = 0; done < num_k_bytes;) {
357 todo = num_k_bytes - done;
364 if (!BN_bin2bn(k_bytes, num_k_bytes, out))

Completed in 102 milliseconds