V.06 11/3

Dependencies:   FT6206 SDFileSystem SPI_TFT_ILI9341 TFT_fonts

Fork of ATT_AWS_IoT_demo by attiot

Committer:
jilee
Date:
Fri Nov 03 20:28:02 2017 +0000
Revision:
29:f71a0be59b99
Parent:
12:1ae41c231014
v.06 11/03/2016

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 12:1ae41c231014 1 /*
mbed_official 12:1ae41c231014 2 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
mbed_official 12:1ae41c231014 3 * SPDX-License-Identifier: Apache-2.0
mbed_official 12:1ae41c231014 4 *
mbed_official 12:1ae41c231014 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
mbed_official 12:1ae41c231014 6 * not use this file except in compliance with the License.
mbed_official 12:1ae41c231014 7 * You may obtain a copy of the License at
mbed_official 12:1ae41c231014 8 *
mbed_official 12:1ae41c231014 9 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 12:1ae41c231014 10 *
mbed_official 12:1ae41c231014 11 * Unless required by applicable law or agreed to in writing, software
mbed_official 12:1ae41c231014 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
mbed_official 12:1ae41c231014 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 12:1ae41c231014 14 * See the License for the specific language governing permissions and
mbed_official 12:1ae41c231014 15 * limitations under the License.
mbed_official 12:1ae41c231014 16 *
mbed_official 12:1ae41c231014 17 * This file is part of mbed TLS (https://tls.mbed.org)
mbed_official 12:1ae41c231014 18 */
mbed_official 5:8275e4cee0d5 19
mbed_official 12:1ae41c231014 20 #if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && \
mbed_official 12:1ae41c231014 21 !defined(MBEDTLS_ENTROPY_NV_SEED) && !defined(MBEDTLS_TEST_NULL_ENTROPY)
mbed_official 12:1ae41c231014 22 #error "This hardware does not have an entropy source."
mbed_official 12:1ae41c231014 23 #endif /* !MBEDTLS_ENTROPY_HARDWARE_ALT && !MBEDTLS_ENTROPY_NV_SEED &&
mbed_official 12:1ae41c231014 24 * !MBEDTLS_TEST_NULL_ENTROPY */
mbed_official 12:1ae41c231014 25
mbed_official 12:1ae41c231014 26 #define MBEDTLS_SHA1_C
mbed_official 5:8275e4cee0d5 27
mbed_official 12:1ae41c231014 28 /*
mbed_official 12:1ae41c231014 29 * This value is sufficient for handling 2048 bit RSA keys.
mbed_official 12:1ae41c231014 30 *
mbed_official 12:1ae41c231014 31 * Set this value higher to enable handling larger keys, but be aware that this
mbed_official 12:1ae41c231014 32 * will increase the stack usage.
mbed_official 12:1ae41c231014 33 */
mbed_official 12:1ae41c231014 34 #define MBEDTLS_MPI_MAX_SIZE 256
mbed_official 5:8275e4cee0d5 35
mbed_official 12:1ae41c231014 36 #define MBEDTLS_MPI_WINDOW_SIZE 1