Home
last modified time | relevance | path

Searched refs:entropy_collector (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/crypto/
H A Djitterentropy.c585 struct rand_data *entropy_collector; in jent_entropy_collector_alloc() local
587 entropy_collector = jent_zalloc(sizeof(struct rand_data)); in jent_entropy_collector_alloc()
588 if (!entropy_collector) in jent_entropy_collector_alloc()
595 entropy_collector->mem = jent_zalloc(JENT_MEMORY_SIZE); in jent_entropy_collector_alloc()
596 if (!entropy_collector->mem) { in jent_entropy_collector_alloc()
597 jent_zfree(entropy_collector); in jent_entropy_collector_alloc()
600 entropy_collector->memblocksize = JENT_MEMORY_BLOCKSIZE; in jent_entropy_collector_alloc()
601 entropy_collector->memblocks = JENT_MEMORY_BLOCKS; in jent_entropy_collector_alloc()
602 entropy_collector->memaccessloops = JENT_MEMORY_ACCESSLOOPS; in jent_entropy_collector_alloc()
608 entropy_collector->osr = osr; in jent_entropy_collector_alloc()
[all …]
H A Djitterentropy-kcapi.c185 struct rand_data *entropy_collector; member
206 if (rng->entropy_collector) in jent_kcapi_cleanup()
207 jent_entropy_collector_free(rng->entropy_collector); in jent_kcapi_cleanup()
208 rng->entropy_collector = NULL; in jent_kcapi_cleanup()
248 rng->entropy_collector = jent_entropy_collector_alloc(1, 0, sdesc); in jent_kcapi_init()
249 if (!rng->entropy_collector) { in jent_kcapi_init()
271 ret = jent_read_entropy(rng->entropy_collector, rdata, dlen); in jent_kcapi_random()
H A Djitterentropy.h19 extern void jent_entropy_collector_free(struct rand_data *entropy_collector);