blob: fdeb52bb6a9d4b67dd92dadd000fc2e9d22ac393 [file] [log] [blame]
Juan Castilloa57a4d52015-04-02 15:44:20 +01001/*
dp-arm52b1fe52017-03-07 10:08:42 +00002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Juan Castilloa57a4d52015-04-02 15:44:20 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castilloa57a4d52015-04-02 15:44:20 +01005 */
6#ifndef __MBEDTLS_CONFIG_H__
7#define __MBEDTLS_CONFIG_H__
8
9/*
Juan Castillobae6b2a2015-11-05 09:24:53 +000010 * Key algorithms currently supported on mbed TLS libraries
Juan Castilloa57a4d52015-04-02 15:44:20 +010011 */
David Cunadoc7a1b192017-05-10 16:38:44 +010012#define TF_MBEDTLS_RSA 1
13#define TF_MBEDTLS_ECDSA 2
Juan Castilloa57a4d52015-04-02 15:44:20 +010014
15/*
Juan Castillobae6b2a2015-11-05 09:24:53 +000016 * Configuration file to build mbed TLS with the required features for
Juan Castilloa57a4d52015-04-02 15:44:20 +010017 * Trusted Boot
18 */
19
Juan Castillobae6b2a2015-11-05 09:24:53 +000020#define MBEDTLS_PLATFORM_MEMORY
21#define MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +010022/* Prevent mbed TLS from using snprintf so that it can use tf_snprintf. */
23#define MBEDTLS_PLATFORM_SNPRINTF_ALT
Juan Castilloa57a4d52015-04-02 15:44:20 +010024
Soby Mathew0a68d132017-05-31 10:35:27 +010025#if !ERROR_DEPRECATED
Juan Castillobae6b2a2015-11-05 09:24:53 +000026#define MBEDTLS_PKCS1_V15
Soby Mathew0a68d132017-05-31 10:35:27 +010027#endif
Juan Castillobae6b2a2015-11-05 09:24:53 +000028#define MBEDTLS_PKCS1_V21
Juan Castilloa57a4d52015-04-02 15:44:20 +010029
Juan Castillobae6b2a2015-11-05 09:24:53 +000030#define MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
31#define MBEDTLS_X509_CHECK_KEY_USAGE
32#define MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE
Soby Mathew0a68d132017-05-31 10:35:27 +010033#define MBEDTLS_X509_RSASSA_PSS_SUPPORT
Juan Castilloa57a4d52015-04-02 15:44:20 +010034
Juan Castillobae6b2a2015-11-05 09:24:53 +000035#define MBEDTLS_ASN1_PARSE_C
36#define MBEDTLS_ASN1_WRITE_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010037
Juan Castillobae6b2a2015-11-05 09:24:53 +000038#define MBEDTLS_BASE64_C
39#define MBEDTLS_BIGNUM_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010040
Juan Castillobae6b2a2015-11-05 09:24:53 +000041#define MBEDTLS_ERROR_C
42#define MBEDTLS_MD_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010043
Juan Castillobae6b2a2015-11-05 09:24:53 +000044#define MBEDTLS_MEMORY_BUFFER_ALLOC_C
45#define MBEDTLS_OID_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010046
Juan Castillobae6b2a2015-11-05 09:24:53 +000047#define MBEDTLS_PK_C
48#define MBEDTLS_PK_PARSE_C
49#define MBEDTLS_PK_WRITE_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010050
Juan Castillobae6b2a2015-11-05 09:24:53 +000051#define MBEDTLS_PLATFORM_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010052
David Cunadoc7a1b192017-05-10 16:38:44 +010053#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
Juan Castillobae6b2a2015-11-05 09:24:53 +000054#define MBEDTLS_ECDSA_C
55#define MBEDTLS_ECP_C
56#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
David Cunadoc7a1b192017-05-10 16:38:44 +010057#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
Juan Castillobae6b2a2015-11-05 09:24:53 +000058#define MBEDTLS_RSA_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010059#endif
60
Juan Castillobae6b2a2015-11-05 09:24:53 +000061#define MBEDTLS_SHA256_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010062
Juan Castillobae6b2a2015-11-05 09:24:53 +000063#define MBEDTLS_VERSION_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010064
Juan Castillobae6b2a2015-11-05 09:24:53 +000065#define MBEDTLS_X509_USE_C
66#define MBEDTLS_X509_CRT_PARSE_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010067
68/* MPI / BIGNUM options */
Juan Castillobae6b2a2015-11-05 09:24:53 +000069#define MBEDTLS_MPI_WINDOW_SIZE 2
70#define MBEDTLS_MPI_MAX_SIZE 256
Juan Castilloa57a4d52015-04-02 15:44:20 +010071
Isla Mitchell99305012017-07-11 14:54:08 +010072/* System headers required to build mbed TLS with the current configuration */
73#include <stdlib.h>
74
Juan Castilloa57a4d52015-04-02 15:44:20 +010075/* Memory buffer allocator options */
Juan Castillobae6b2a2015-11-05 09:24:53 +000076#define MBEDTLS_MEMORY_ALIGN_MULTIPLE 8
Juan Castilloa57a4d52015-04-02 15:44:20 +010077
Juan Castillobae6b2a2015-11-05 09:24:53 +000078#include "mbedtls/check_config.h"
Juan Castilloa57a4d52015-04-02 15:44:20 +010079
Juan Castilloa57a4d52015-04-02 15:44:20 +010080#endif /* __MBEDTLS_CONFIG_H__ */