8ca6319781
Add an option to enable nistbeacon which is available since version 6.1
and
aefe862e18
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
33 lines
994 B
Plaintext
33 lines
994 B
Plaintext
config BR2_PACKAGE_RNG_TOOLS
|
|
bool "rng-tools"
|
|
# pthread_setaffinity_np
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
|
|
select BR2_PACKAGE_JITTERENTROPY_LIBRARY
|
|
select BR2_PACKAGE_LIBSYSFS
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
Daemon to use hardware random number generators.
|
|
|
|
http://sourceforge.net/projects/gkernel/
|
|
|
|
if BR2_PACKAGE_RNG_TOOLS
|
|
|
|
config BR2_PACKAGE_RNG_TOOLS_NISTBEACON
|
|
bool "NIST Entropy Beacon support"
|
|
select BR2_PACKAGE_JANSSON
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBXML2
|
|
help
|
|
Enable NIST Entropy Beacon support.
|
|
|
|
Entropy gathered from the NIST network entropy beacon. Note
|
|
that this entropy source is disabled by default as it should
|
|
never be used for cryptographic purposes, or any use case in
|
|
which random data should be known only by a single entity.
|
|
|
|
endif
|
|
|
|
comment "rng-tools needs a toolchain w/ NPTL"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|