Searched defs:entropy (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Dopenssl_link.c40 #include <isc/entropy.h>
106 entropy_add(const void *buf, int num, double entropy) { argument
112 UNUSED(entropy);
H A Ddispatch.c29 #include <isc/entropy.h>
65 isc_entropy_t *entropy; /*%< entropy source for ARC4 */ member in struct:arc4ctx
85 isc_entropy_t *entropy; /*%< entropy source */ member in struct:dns_dispatchmgr
441 dispatch_arc4init(arc4ctx_t *actx, isc_entropy_t *entropy, isc_mutex_t *lock) { argument
448 actx->entropy = entropy; /* don't have to attach */
501 if (actx->entropy != NULL) {
505 result = isc_entropy_getdata(actx->entropy, rn
1803 dns_dispatchmgr_create(isc_mem_t *mctx, isc_entropy_t *entropy, dns_dispatchmgr_t **mgrp) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dhash.c61 #include <isc/entropy.h>
96 isc_entropy_t *entropy; /*%< entropy source */ member in struct:isc_hash
142 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, argument
192 hctx->entropy = NULL;
197 if (entropy != NULL)
198 isc_entropy_attach(entropy, &hctx->entropy);
219 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit) { argument
230 result = isc_hash_ctxcreate(mctx, entropy, limi
[all...]
H A Dentropy.c22 * This is the system independent part of the entropy module. It is
24 * \link unix/entropy.c unix/entropy.c \endlink or win32/entropy.c.
35 #include <isc/entropy.h>
62 * Size of entropy pool in 32-bit words. This _MUST_ be a power of 2.
94 isc_uint32_t entropy; /*%< current entropy estimate in bits */ member in struct:__anon150
144 isc_uint32_t total; /*%< entropy from this source */
223 * Add in entropy, eve
227 add_entropy(isc_entropy_t *ent, isc_uint32_t entropy) argument
240 subtract_entropy(isc_entropy_t *ent, isc_uint32_t entropy) argument
312 entropypool_adddata(isc_entropy_t *ent, void *p, unsigned int len, isc_uint32_t entropy) argument
1028 unsigned int entropy; local
1066 isc_entropy_putdata(isc_entropy_t *ent, void *data, unsigned int length, isc_uint32_t entropy) argument
[all...]
/bind-9.6-ESV-R11/bin/nsupdate/
H A Dnsupdate.c34 #include <isc/entropy.h>
152 static isc_entropy_t *entropy = NULL; variable
240 fatal("could not create entropy object");
253 fatal("could not initialize entropy source: %s",
656 cleanup_entropy(&entropy);
775 setup_entropy(mctx, NULL, &entropy);
777 result = isc_hash_create(mctx, entropy, DNS_NAME_MAXWIRE);
781 result = dns_dispatchmgr_create(mctx, entropy, &dispatchmgr);
799 result = dst_lib_init(mctx, entropy, 0);
2805 parse_args(argc, argv, mctx, &entropy);
[all...]

Completed in 38 milliseconds