Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.4-rc2 15 lines 574 B view raw
1// SPDX-License-Identifier: GPL-2.0-or-later 2 3extern void *jent_zalloc(unsigned int len); 4extern void jent_zfree(void *ptr); 5extern void jent_memcpy(void *dest, const void *src, unsigned int n); 6extern void jent_get_nstime(__u64 *out); 7 8struct rand_data; 9extern int jent_entropy_init(void); 10extern int jent_read_entropy(struct rand_data *ec, unsigned char *data, 11 unsigned int len); 12 13extern struct rand_data *jent_entropy_collector_alloc(unsigned int osr, 14 unsigned int flags); 15extern void jent_entropy_collector_free(struct rand_data *entropy_collector);