Searched defs:reseed (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Dlfsr.h25 * It MUST set "count" to a new value or the lfsr will never reseed again.
27 * Also, a reseed will never occur in the middle of an extraction. This
40 unsigned int count; /*%< reseed count (in BITS!) */
41 isc_lfsrreseed_t reseed; /*%< reseed function */ member in struct:isc_lfsr
42 void *arg; /*%< reseed function argument */
51 isc_lfsrreseed_t reseed, void *arg);
/bind-9.11.3/lib/isc/
H A Dlfsr.c27 isc_lfsrreseed_t reseed, void *arg)
37 lfsr->reseed = reseed;
40 if (count == 0 && reseed != NULL)
41 reseed(lfsr, arg);
57 * First, give the reseed function a crack at it. If the state is
61 if (lfsr->reseed != NULL)
62 lfsr->reseed(lfsr, lfsr->arg);
100 if (lfsr->count != 0 && lfsr->reseed != NULL) {
102 lfsr->reseed(lfs
25 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, isc_uint32_t tap, unsigned int count, isc_lfsrreseed_t reseed, void *arg) argument
[all...]
H A Dentropy.c79 * The number of times we'll "reseed" for pseudorandom seeds. This is an
370 reseed(isc_entropy_t *ent) { function
611 reseed(ent);

Completed in 9 milliseconds