Lines Matching defs:nonce
311 /* Get a nonce from the operating system */
343 /* Use the built in nonce source plus some of our specifics */
365 unsigned char *nonce = NULL, *entropy = NULL;
405 nonce = OPENSSL_malloc(noncelen);
406 if (nonce == NULL) {
410 if (noncelen != drbg->parent_nonce(drbg->parent, nonce,
422 * the entropy and nonce in 1 call by increasing the entropy
424 * the length of the nonce. We do this in case a nonce is
425 * required and there is no parental nonce capability.
433 noncelen = prov_drbg_get_nonce(drbg, &nonce, drbg->min_noncelen,
460 if (!drbg->instantiate(drbg, entropy, entropylen, nonce, noncelen,
474 if (nonce != NULL)
475 ossl_prov_cleanup_nonce(drbg->provctx, nonce, noncelen);
770 const unsigned char *nonce, size_t noncelen,