mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 13:11:57 +00:00
Add a STM32 LL based driver for the RNG processor. The RNG processor is a random number generator, based on a continuous analog noise, that provides a random 32-bit value to the host when read. The RNG passed the FIPS PUB 140-2 (2001 October 10) tests with a success ratio of 99%. Signed-off-by: Erwin Rol <erwin@erwinrol.com>
16 lines
461 B
Plaintext
16 lines
461 B
Plaintext
# Kconfig.stm32 - STM32 random generator driver configuration
|
|
#
|
|
# Copyright (c) 2017 Erwin Rol <erwin@erwinrol.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig RANDOM_STM32_RNG
|
|
bool "STM32 RNG driver"
|
|
depends on RANDOM_GENERATOR
|
|
default n
|
|
select RANDOM_HAS_DRIVER
|
|
help
|
|
This option enables the RNG processor, which is a random number
|
|
generator, based on a continuous analog noise, that provides
|
|
a random 32-bit value to the host when read.
|