Home
last modified time | relevance | path

Searched refs:get_nonce (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/crypto/rand/
Ddrbg_lib.c207 drbg->get_nonce = rand_drbg_get_nonce; in rand_drbg_new()
324 if (drbg->min_noncelen > 0 && drbg->get_nonce == NULL) { in RAND_DRBG_instantiate()
339 if (drbg->min_noncelen > 0 && drbg->get_nonce != NULL) { in RAND_DRBG_instantiate()
340 noncelen = drbg->get_nonce(drbg, &nonce, drbg->strength / 2, in RAND_DRBG_instantiate()
702 RAND_DRBG_get_nonce_fn get_nonce, in RAND_DRBG_set_callbacks() argument
709 drbg->get_nonce = get_nonce; in RAND_DRBG_set_callbacks()
992 if (drbg->min_noncelen > 0 && drbg->get_nonce == NULL) { in rand_drbg_seedlen()
Drand_local.h286 RAND_DRBG_get_nonce_fn get_nonce; member
/third_party/openssl/doc/man3/
DRAND_DRBG_set_callbacks.pod20 RAND_DRBG_get_nonce_fn get_nonce,
85 The B<get_nonce>() and B<cleanup_nonce>() callbacks are used to obtain a nonce
92 and the B<get_nonce>() and B<cleanup_nonce>() callbacks can be omitted by
120 Even if a nonce is required, the B<get_nonce>() and B<cleanup_nonce>()
/third_party/openssl/include/openssl/
Drand_drbg.h122 RAND_DRBG_get_nonce_fn get_nonce,