2011-01-06 13:28:03 +01:00
|
|
|
/**
|
2018-01-23 16:36:58 +01:00
|
|
|
* \file doc_rng.h
|
|
|
|
*
|
|
|
|
* \brief Random number generator (RNG) module documentation file.
|
|
|
|
*/
|
|
|
|
/*
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2011-01-06 13:28:03 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup rng_module Random number generator (RNG) module
|
2013-09-10 16:16:50 +02:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* The Random number generator (RNG) module provides random number
|
2016-01-04 17:09:23 +01:00
|
|
|
* generation, see \c mbedtls_ctr_drbg_random().
|
2011-12-03 22:45:14 +01:00
|
|
|
*
|
2013-09-10 16:16:50 +02:00
|
|
|
* The block-cipher counter-mode based deterministic random
|
2011-12-03 22:45:14 +01:00
|
|
|
* bit generator (CTR_DBRG) as specified in NIST SP800-90. It needs an external
|
2016-01-04 17:09:23 +01:00
|
|
|
* source of entropy. For these purposes \c mbedtls_entropy_func() can be used.
|
|
|
|
* This is an implementation based on a simple entropy accumulator design.
|
2011-12-03 22:45:14 +01:00
|
|
|
*
|
2016-01-04 17:09:23 +01:00
|
|
|
* Meaning that there seems to be no practical algorithm that can guess
|
2011-01-06 13:28:03 +01:00
|
|
|
* the next bit with a probability larger than 1/2 in an output sequence.
|
|
|
|
*
|
|
|
|
* This module can be used to generate random numbers.
|
|
|
|
*/
|