1# esp32 entropy generator driver configuration
2
3# Copyright (c) 2017 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config ENTROPY_ESP32_RNG
7	bool "ESP32 entropy number generator driver"
8	default y
9	depends on DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED
10	select ENTROPY_HAS_DRIVER
11	help
12	  This option enables the entropy number generator for ESP32 SoCs.
13
14	  With Wi-Fi and Bluetooth disabled, this will produce pseudo-entropy
15	  numbers: noise from these radios are used to feed entropy in this
16	  generator.
17