blob: 7aa4dee10e486a59e66c0aa074a44fce8ccef8d7 [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 */
Qixiang Xu1c2aef12017-08-24 15:12:20 +080012#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
Juan Castilloa57a4d52015-04-02 15:44:20 +010033
Juan Castillobae6b2a2015-11-05 09:24:53 +000034#define MBEDTLS_ASN1_PARSE_C
35#define MBEDTLS_ASN1_WRITE_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010036
Juan Castillobae6b2a2015-11-05 09:24:53 +000037#define MBEDTLS_BASE64_C
38#define MBEDTLS_BIGNUM_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010039
Juan Castillobae6b2a2015-11-05 09:24:53 +000040#define MBEDTLS_ERROR_C
41#define MBEDTLS_MD_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010042
Juan Castillobae6b2a2015-11-05 09:24:53 +000043#define MBEDTLS_MEMORY_BUFFER_ALLOC_C
44#define MBEDTLS_OID_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010045
Juan Castillobae6b2a2015-11-05 09:24:53 +000046#define MBEDTLS_PK_C
47#define MBEDTLS_PK_PARSE_C
48#define MBEDTLS_PK_WRITE_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010049
Juan Castillobae6b2a2015-11-05 09:24:53 +000050#define MBEDTLS_PLATFORM_C
Juan Castilloa57a4d52015-04-02 15:44:20 +010051
David Cunadoc7a1b192017-05-10 16:38:44 +010052#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
Juan Castillobae6b2a2015-11-05 09:24:53 +000053#define MBEDTLS_ECDSA_C
54#define MBEDTLS_ECP_C
55#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
David Cunadoc7a1b192017-05-10 16:38:44 +010056#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
Juan Castillobae6b2a2015-11-05 09:24:53 +000057#define MBEDTLS_RSA_C
Qixiang Xu1c2aef12017-08-24 15:12:20 +080058#define MBEDTLS_X509_RSASSA_PSS_SUPPORT
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__ */