mirror of
https://github.com/ipxe/ipxe
synced 2025-12-13 15:31:42 +03:00
ANS X9.82 specifies several Approved Sources of Entropy Input (SEI). One such SEI uses an entropy source as the Source of Entropy Input, condensing each entropy source output after each GetEntropy call. This can be implemented relatively cheaply in iPXE and avoids the need to allocate potentially very large buffers. (Note that the terms "entropy source" and "Source of Entropy Input" are not synonyms within the context of ANS X9.82.) Use the iPXE API mechanism to allow entropy sources to be selected at compilation time. Signed-off-by: Michael Brown <mcb30@ipxe.org>
24 lines
372 B
C
24 lines
372 B
C
#ifndef CONFIG_DEFAULTS_LINUX_H
|
|
#define CONFIG_DEFAULTS_LINUX_H
|
|
|
|
/** @file
|
|
*
|
|
* Configuration defaults for linux
|
|
*
|
|
*/
|
|
|
|
#define CONSOLE_LINUX
|
|
#define TIMER_LINUX
|
|
#define UACCESS_LINUX
|
|
#define UMALLOC_LINUX
|
|
#define NAP_LINUX
|
|
#define SMBIOS_LINUX
|
|
#define SANBOOT_NULL
|
|
#define ENTROPY_NULL
|
|
|
|
#define DRIVERS_LINUX
|
|
|
|
#define IMAGE_SCRIPT
|
|
|
|
#endif /* CONFIG_DEFAULTS_LINUX_H */
|