AWS IoT demonstration using the Avnet Shield (AT&T LTE) and the FRDM-K64F target board.

Dependencies:   K64F_FATFileSystem

Fork of mbed-os-example-tls-tls-client by mbed-os-examples

Committer:
mbed_official
Date:
Thu Aug 04 15:47:30 2016 +0100
Revision:
5:8275e4cee0d5
Child:
12:1ae41c231014
Correct HAVEGE entropy in the configurations.


Commit copied from https://github.com/ARMmbed/mbed-os-example-tls

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 5:8275e4cee0d5 1 #if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && !defined(MBEDTLS_ENTROPY_NV_SEED)
mbed_official 5:8275e4cee0d5 2
mbed_official 5:8275e4cee0d5 3 #ifdef MBEDTLS_TEST_NULL_ENTROPY
mbed_official 5:8275e4cee0d5 4 #warning "MBED TLS SECURITY FEATURE IS DISABLED. THE TESTS WILL NOT BE SECURE! PLEASE IMPLEMENT HARDWARE ENTROPY FOR YOUR SELECTED HARDWARE."
mbed_official 5:8275e4cee0d5 5
mbed_official 5:8275e4cee0d5 6 #else
mbed_official 5:8275e4cee0d5 7 #warning "THIS HARDWARE DOES NOT HAVE ENTROPY. DISABLING MBED TLS SECURITY FEATURE."
mbed_official 5:8275e4cee0d5 8 #define MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
mbed_official 5:8275e4cee0d5 9 #define MBEDTLS_TEST_NULL_ENTROPY
mbed_official 5:8275e4cee0d5 10 #warning "MBED TLS SECURITY FEATURE IS DISABLED. THE TESTS WILL NOT BE SECURE! PLEASE IMPLEMENT HARDWARE ENTROPY FOR YOUR SELECTED HARDWARE."
mbed_official 5:8275e4cee0d5 11 #endif // defined(MBEDTLS_TEST_NULL_ENTROPY)
mbed_official 5:8275e4cee0d5 12
mbed_official 5:8275e4cee0d5 13 #endif // !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && !defined(MBEDTLS_ENTROPY_NV_SEED)
mbed_official 5:8275e4cee0d5 14