Symbol: RAND_POOL
crypto/openssl/crypto/rand/prov_seed.c
24
RAND_POOL *pool;
crypto/openssl/crypto/rand/prov_seed.c
80
RAND_POOL *pool;
crypto/openssl/crypto/rand/rand_lib.c
237
RAND_POOL *pool = ossl_rand_pool_new(RAND_DRBG_STRENGTH, 1,
crypto/openssl/crypto/rand/rand_pool.c
111
const unsigned char *ossl_rand_pool_buffer(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
119
size_t ossl_rand_pool_entropy(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
127
size_t ossl_rand_pool_length(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
138
unsigned char *ossl_rand_pool_detach(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
150
void ossl_rand_pool_reattach(RAND_POOL *pool, unsigned char *buffer)
crypto/openssl/crypto/rand/rand_pool.c
172
size_t ossl_rand_pool_entropy_available(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
188
size_t ossl_rand_pool_entropy_needed(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
197
static int rand_pool_grow(RAND_POOL *pool, size_t len)
crypto/openssl/crypto/rand/rand_pool.c
22
RAND_POOL *ossl_rand_pool_new(int entropy_requested, int secure,
crypto/openssl/crypto/rand/rand_pool.c
236
size_t ossl_rand_pool_bytes_needed(RAND_POOL *pool, unsigned int entropy_factor)
crypto/openssl/crypto/rand/rand_pool.c
25
RAND_POOL *pool = OPENSSL_zalloc(sizeof(*pool));
crypto/openssl/crypto/rand/rand_pool.c
284
size_t ossl_rand_pool_bytes_remaining(RAND_POOL *pool)
crypto/openssl/crypto/rand/rand_pool.c
298
int ossl_rand_pool_add(RAND_POOL *pool,
crypto/openssl/crypto/rand/rand_pool.c
353
unsigned char *ossl_rand_pool_add_begin(RAND_POOL *pool, size_t len)
crypto/openssl/crypto/rand/rand_pool.c
392
int ossl_rand_pool_add_end(RAND_POOL *pool, size_t len, size_t entropy)
crypto/openssl/crypto/rand/rand_pool.c
418
int ossl_rand_pool_adin_mix_in(RAND_POOL *pool, const unsigned char *adin,
crypto/openssl/crypto/rand/rand_pool.c
60
RAND_POOL *ossl_rand_pool_attach(const unsigned char *buffer, size_t len,
crypto/openssl/crypto/rand/rand_pool.c
63
RAND_POOL *pool = OPENSSL_zalloc(sizeof(*pool));
crypto/openssl/crypto/rand/rand_pool.c
87
void ossl_rand_pool_free(RAND_POOL *pool)
crypto/openssl/include/crypto/rand.h
134
size_t ossl_pool_acquire_entropy(RAND_POOL *pool);
crypto/openssl/include/crypto/rand.h
135
int ossl_pool_add_nonce_data(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
100
size_t ossl_rand_pool_bytes_needed(RAND_POOL *pool, unsigned int entropy_factor);
crypto/openssl/include/crypto/rand_pool.h
101
size_t ossl_rand_pool_bytes_remaining(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
103
int ossl_rand_pool_add(RAND_POOL *pool,
crypto/openssl/include/crypto/rand_pool.h
105
unsigned char *ossl_rand_pool_add_begin(RAND_POOL *pool, size_t len);
crypto/openssl/include/crypto/rand_pool.h
106
int ossl_rand_pool_add_end(RAND_POOL *pool, size_t len, size_t entropy);
crypto/openssl/include/crypto/rand_pool.h
107
int ossl_rand_pool_adin_mix_in(RAND_POOL *pool, const unsigned char *adin,
crypto/openssl/include/crypto/rand_pool.h
84
RAND_POOL *ossl_rand_pool_new(int entropy_requested, int secure,
crypto/openssl/include/crypto/rand_pool.h
86
RAND_POOL *ossl_rand_pool_attach(const unsigned char *buffer, size_t len,
crypto/openssl/include/crypto/rand_pool.h
88
void ossl_rand_pool_free(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
90
const unsigned char *ossl_rand_pool_buffer(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
91
unsigned char *ossl_rand_pool_detach(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
92
void ossl_rand_pool_reattach(RAND_POOL *pool, unsigned char *buffer);
crypto/openssl/include/crypto/rand_pool.h
94
size_t ossl_rand_pool_entropy(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
95
size_t ossl_rand_pool_length(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
97
size_t ossl_rand_pool_entropy_available(RAND_POOL *pool);
crypto/openssl/include/crypto/rand_pool.h
98
size_t ossl_rand_pool_entropy_needed(RAND_POOL *pool);
crypto/openssl/providers/implementations/include/prov/seeding.h
14
size_t ossl_prov_acquire_entropy_from_tsc(RAND_POOL *pool);
crypto/openssl/providers/implementations/include/prov/seeding.h
15
size_t ossl_prov_acquire_entropy_from_cpu(RAND_POOL *pool);
crypto/openssl/providers/implementations/rands/seed_src.c
187
RAND_POOL *pool;
crypto/openssl/providers/implementations/rands/seed_src.c
96
RAND_POOL *pool;
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
182
RAND_POOL *pool;
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
275
RAND_POOL *pool;
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
61
RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_cpu_arm64.c
32
size_t ossl_prov_acquire_entropy_from_cpu(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_cpu_x86.c
38
size_t ossl_prov_acquire_entropy_from_cpu(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_tsc.c
33
size_t ossl_prov_acquire_entropy_from_tsc(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
144
size_t ossl_pool_acquire_entropy(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
628
size_t ossl_pool_acquire_entropy(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
750
int ossl_pool_add_nonce_data(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
345
size_t data_collect_method(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
500
size_t get_entropy_method(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
542
size_t ossl_pool_acquire_entropy(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
549
int ossl_pool_add_nonce_data(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vxworks.c
101
size_t ossl_pool_acquire_entropy(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_vxworks.c
79
int ossl_pool_add_nonce_data(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_win.c
128
int ossl_pool_add_nonce_data(RAND_POOL *pool)
crypto/openssl/providers/implementations/rands/seeding/rand_win.c
47
size_t ossl_pool_acquire_entropy(RAND_POOL *pool)