2011-01-06 13:28:03 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Random number generator (RNG) module documentation file.
|
2015-08-06 10:59:26 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
|
|
|
*
|
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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
|
2013-09-10 16:16:50 +02:00
|
|
|
* generation, see \c ctr_dbrg_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
|
2015-05-14 13:55:51 +02:00
|
|
|
* source of entropy. For these purposes \c mbedtls_entropy_func() can be used. This is
|
2011-12-03 22:45:14 +01:00
|
|
|
* an implementation based on a simple entropy accumulator design.
|
|
|
|
*
|
2013-09-10 16:16:50 +02:00
|
|
|
* The other number generator that is included is less strong and uses the HAVEGE
|
|
|
|
* (HArdware Volatile Entropy Gathering and Expansion) software heuristic
|
|
|
|
* which considered unsafe for primary usage, but provides additional random
|
|
|
|
* to the entropy pool if enables.
|
2011-01-06 13:28:03 +01:00
|
|
|
*
|
|
|
|
* \* Meaning that there seems to be no practical algorithm that can guess
|
|
|
|
* the next bit with a probability larger than 1/2 in an output sequence.
|
|
|
|
*
|
|
|
|
* This module can be used to generate random numbers.
|
|
|
|
*/
|