Home | History | Annotate | Download | only in rands

Lines Matching defs:noncelen

371     size_t noncelen = 0, entropylen = 0;
403 noncelen = drbg->parent_nonce(drbg->parent, NULL, drbg->strength,
406 if (noncelen == 0) {
410 nonce = OPENSSL_malloc(noncelen);
415 if (noncelen != drbg->parent_nonce(drbg->parent, nonce,
438 noncelen = prov_drbg_get_nonce(drbg, &nonce, drbg->min_noncelen,
440 if (noncelen < drbg->min_noncelen
441 || noncelen > drbg->max_noncelen) {
465 if (!drbg->instantiate(drbg, entropy, entropylen, nonce, noncelen,
480 ossl_prov_cleanup_nonce(drbg->provctx, nonce, noncelen);
776 const unsigned char *nonce, size_t noncelen,