Home
last modified time | relevance | path

Searched refs:entropy_requested (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rand/
H A Drand_pool.c22 RAND_POOL *ossl_rand_pool_new(int entropy_requested, int secure, in ossl_rand_pool_new() argument
50 pool->entropy_requested = entropy_requested; in ossl_rand_pool_new()
182 if (pool->entropy < pool->entropy_requested) in ossl_rand_pool_entropy_available()
198 if (pool->entropy < pool->entropy_requested) in ossl_rand_pool_entropy_needed()
199 return pool->entropy_requested - pool->entropy; in ossl_rand_pool_entropy_needed()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rand/
H A Drand_lib.c149 pool->entropy_requested = entropy; in rand_drbg_get_entropy()
436 RAND_POOL *rand_pool_new(int entropy_requested, int secure, in rand_pool_new() argument
468 pool->entropy_requested = entropy_requested; in rand_pool_new()
601 if (pool->entropy < pool->entropy_requested) in rand_pool_entropy_available()
617 if (pool->entropy < pool->entropy_requested) in rand_pool_entropy_needed()
618 return pool->entropy_requested - pool->entropy; in rand_pool_entropy_needed()
H A Drand_local.h178 size_t entropy_requested; /* requested entropy count in bits */ member
/netbsd-src/crypto/external/bsd/openssl/dist/include/crypto/
H A Drand_pool.h82 size_t entropy_requested; /* requested entropy count in bits */ member
85 RAND_POOL *ossl_rand_pool_new(int entropy_requested, int secure,
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/crypto/
H A Drand.h64 RAND_POOL *rand_pool_new(int entropy_requested, int secure,