| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| lfsr.h | 32 * It MUST set "count" to a new value or the lfsr will never reseed again. 34 * Also, a reseed will never occur in the middle of an extraction. This 47 unsigned int count; /*%< reseed count (in BITS!) */ 48 isc_lfsrreseed_t reseed; /*%< reseed function */ member in struct:isc_lfsr 49 void *arg; /*%< reseed function argument */ 56 unsigned int count, isc_lfsrreseed_t reseed, void *arg);
|
| /src/sys/kern/ |
| subr_cprng.c | 90 struct evcnt reseed; member in struct:cprng_cpu::__anon6861 248 evcnt_attach_dynamic(&cc->cc_evcnt->reseed, EVCNT_TYPE_MISC, NULL, 249 cpuname, "cprng_strong reseed"); 251 /* Set the epoch uninitialized so we reseed on first use. */ 260 evcnt_detach(&cc->cc_evcnt->reseed); 281 * cause the next caller to reseed again, and in the end we 282 * just reseed a couple more times than necessary. 290 (*ccp)->cc_evcnt->reseed.ev_count++; 328 /* Generate data. Failure here means it's time to reseed. */
|
| /src/sys/crypto/nist_hash_drbg/ |
| nist_hash_drbg.c | 212 * indication that a reseed is required. 475 bool reseed; 483 .reseed = false, 550 .reseed = false, 617 .reseed = false, 684 .reseed = false, 751 .reseed = true, 818 .reseed = true, 885 .reseed = true, 952 .reseed = true 466 bool reseed; member in struct:__anon2461 [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/ |
| drbg_local.h | 26 /* Maximum reseed intervals */ 30 /* Default reseed intervals */ 69 int (*reseed)(PROV_DRBG *drbg, const unsigned char *ent, size_t ent_len, member in struct:prov_drbg_st 87 * openssl_get_fork_id(). Used to provide fork-safety and reseed this 120 * Counts the number of generate requests since the last reseed 126 * Maximum number of generate requests until a reseed is required. 175 int (*reseed)(PROV_DRBG *drbg, const unsigned char *ent, size_t ent_len,
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/rands/ |
| drbg_local.h | 25 /* Maximum reseed intervals */ 29 /* Default reseed intervals */ 83 int (*reseed)(PROV_DRBG *drbg, const unsigned char *ent, size_t ent_len, member in struct:prov_drbg_st 103 * openssl_get_fork_id(). Used to provide fork-safety and reseed this 136 * Counts the number of generate requests since the last reseed 142 * Maximum number of generate requests until a reseed is required. 190 int (*reseed)(PROV_DRBG *drbg, const unsigned char *ent, size_t ent_len,
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| rand-fortuna.c | 85 /* for one big request, reseed after this many bytes */ 89 * Skip reseed if pool 0 has less than this many 90 * bytes added since last reseed. 211 * The time between reseed must be at least RESEED_INTERVAL 235 /* reseed will happen, update last_reseed_time */ 248 reseed(FState * st) function 259 * Both #0 and #1 reseed would use only pool 0. Just skip #0 then. 393 /* Should we reseed? */ 396 reseed(st); 402 /* If we forked, force a reseed again * [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/rand/ |
| rand_local.h | 26 /* Maximum reseed intervals */ 30 /* Default reseed intervals */ 109 /* reseed */ 131 RAND_DRBG_reseed_fn reseed; member in struct:rand_drbg_method_st 193 * openssl_get_fork_id(). Used to provide fork-safety and reseed this 237 /* Counts the number of generate requests since the last reseed. */ 240 * Maximum number of generate requests until a reseed is required. 253 * Enables reseed propagation (see following comment)
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| evp_rand.c | 37 OSSL_FUNC_rand_reseed_fn *reseed; member in struct:evp_rand_st 172 if (rand->reseed != NULL) 174 rand->reseed = OSSL_FUNC_rand_reseed(fns); 599 if (ctx->meth->reseed != NULL) 600 return ctx->meth->reseed(ctx->algctx, prediction_resistance,
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| evp_rand.c | 38 OSSL_FUNC_rand_reseed_fn *reseed; member in struct:evp_rand_st 170 if (rand->reseed != NULL) 172 rand->reseed = OSSL_FUNC_rand_reseed(fns); 590 if (ctx->meth->reseed != NULL) 591 return ctx->meth->reseed(ctx->algctx, prediction_resistance,
|