drivers: Rename random
to entropy
This should clear up some of the confusion with random number generators and drivers that obtain entropy from the hardware. Also, many hardware number generators have limited bandwidth, so it's natural for their output to be only used for seeding a random number generator. Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
This commit is contained in:
parent
adce1d1888
commit
da9b0ddf5b
114 changed files with 379 additions and 380 deletions
18
drivers/entropy/Kconfig.esp32
Normal file
18
drivers/entropy/Kconfig.esp32
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Kconfig.esp32 - esp32 entropy generator driver configuration
|
||||
#
|
||||
# Copyright (c) 2017 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config ENTROPY_ESP32_RNG
|
||||
bool "ESP32 entropy number generator driver"
|
||||
depends on ENTROPY_GENERATOR && SOC_ESP32
|
||||
default n
|
||||
select ENTROPY_HAS_DRIVER
|
||||
select ENTROPY_DEVICE_ENTROPY_GENERATOR
|
||||
help
|
||||
This option enables the entropy number generator for ESP32 SoCs.
|
||||
|
||||
With Wi-Fi and Bluetooth disabled, this will produce pseudo-entropy
|
||||
numbers: noise from these radios are used to feed entropy in this
|
||||
generator.
|
Loading…
Add table
Add a link
Reference in a new issue