Mark Radbourne / Mbed 2 deprecated iothub_client_sample_amqp

Dependencies:   EthernetInterface NTPClient iothub_amqp_transport iothub_client mbed-rtos mbed

Fork of iothub_client_sample_amqp by Azure IoT

Committer:
markrad
Date:
Thu Jan 05 00:20:03 2017 +0000
Revision:
58:f50b97b08851
Sample using MBED TLS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
markrad 58:f50b97b08851 1 /**
markrad 58:f50b97b08851 2 * @file
markrad 58:f50b97b08851 3 * Random number generator (RNG) module documentation file.
markrad 58:f50b97b08851 4 *
markrad 58:f50b97b08851 5 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
markrad 58:f50b97b08851 6 * SPDX-License-Identifier: Apache-2.0
markrad 58:f50b97b08851 7 *
markrad 58:f50b97b08851 8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
markrad 58:f50b97b08851 9 * not use this file except in compliance with the License.
markrad 58:f50b97b08851 10 * You may obtain a copy of the License at
markrad 58:f50b97b08851 11 *
markrad 58:f50b97b08851 12 * http://www.apache.org/licenses/LICENSE-2.0
markrad 58:f50b97b08851 13 *
markrad 58:f50b97b08851 14 * Unless required by applicable law or agreed to in writing, software
markrad 58:f50b97b08851 15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
markrad 58:f50b97b08851 16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
markrad 58:f50b97b08851 17 * See the License for the specific language governing permissions and
markrad 58:f50b97b08851 18 * limitations under the License.
markrad 58:f50b97b08851 19 *
markrad 58:f50b97b08851 20 * This file is part of mbed TLS (https://tls.mbed.org)
markrad 58:f50b97b08851 21 */
markrad 58:f50b97b08851 22
markrad 58:f50b97b08851 23 /**
markrad 58:f50b97b08851 24 * @addtogroup rng_module Random number generator (RNG) module
markrad 58:f50b97b08851 25 *
markrad 58:f50b97b08851 26 * The Random number generator (RNG) module provides random number
markrad 58:f50b97b08851 27 * generation, see \c mbedtls_ctr_drbg_random().
markrad 58:f50b97b08851 28 *
markrad 58:f50b97b08851 29 * The block-cipher counter-mode based deterministic random
markrad 58:f50b97b08851 30 * bit generator (CTR_DBRG) as specified in NIST SP800-90. It needs an external
markrad 58:f50b97b08851 31 * source of entropy. For these purposes \c mbedtls_entropy_func() can be used.
markrad 58:f50b97b08851 32 * This is an implementation based on a simple entropy accumulator design.
markrad 58:f50b97b08851 33 *
markrad 58:f50b97b08851 34 * The other number generator that is included is less strong and uses the
markrad 58:f50b97b08851 35 * HAVEGE (HArdware Volatile Entropy Gathering and Expansion) software heuristic
markrad 58:f50b97b08851 36 * which considered unsafe for primary usage, but provides additional random
markrad 58:f50b97b08851 37 * to the entropy pool if enables.
markrad 58:f50b97b08851 38 *
markrad 58:f50b97b08851 39 * Meaning that there seems to be no practical algorithm that can guess
markrad 58:f50b97b08851 40 * the next bit with a probability larger than 1/2 in an output sequence.
markrad 58:f50b97b08851 41 *
markrad 58:f50b97b08851 42 * This module can be used to generate random numbers.
markrad 58:f50b97b08851 43 */