mbedtls_config.h 2.58 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
 */
6
7
#ifndef MBEDTLS_CONFIG_H
#define MBEDTLS_CONFIG_H
8
9

/*
Juan Castillo's avatar
Juan Castillo committed
10
 * Key algorithms currently supported on mbed TLS libraries
11
 */
12
13
#define TF_MBEDTLS_RSA			1
#define TF_MBEDTLS_ECDSA		2
Qixiang Xu's avatar
Qixiang Xu committed
14
#define TF_MBEDTLS_RSA_AND_ECDSA	3
15

16
17
18
19
20
21
22
/*
 * Hash algorithms currently supported on mbed TLS libraries
 */
#define TF_MBEDTLS_SHA256		1
#define TF_MBEDTLS_SHA384		2
#define TF_MBEDTLS_SHA512		3

23
/*
Juan Castillo's avatar
Juan Castillo committed
24
 * Configuration file to build mbed TLS with the required features for
25
26
27
 * Trusted Boot
 */

Juan Castillo's avatar
Juan Castillo committed
28
29
#define MBEDTLS_PLATFORM_MEMORY
#define MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
30
31
/* Prevent mbed TLS from using snprintf so that it can use tf_snprintf. */
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
32

Juan Castillo's avatar
Juan Castillo committed
33
#define MBEDTLS_PKCS1_V21
34

Juan Castillo's avatar
Juan Castillo committed
35
36
37
#define MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
#define MBEDTLS_X509_CHECK_KEY_USAGE
#define MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE
38

Juan Castillo's avatar
Juan Castillo committed
39
40
#define MBEDTLS_ASN1_PARSE_C
#define MBEDTLS_ASN1_WRITE_C
41

Juan Castillo's avatar
Juan Castillo committed
42
43
#define MBEDTLS_BASE64_C
#define MBEDTLS_BIGNUM_C
44

Juan Castillo's avatar
Juan Castillo committed
45
46
#define MBEDTLS_ERROR_C
#define MBEDTLS_MD_C
47

Juan Castillo's avatar
Juan Castillo committed
48
49
#define MBEDTLS_MEMORY_BUFFER_ALLOC_C
#define MBEDTLS_OID_C
50

Juan Castillo's avatar
Juan Castillo committed
51
52
53
#define MBEDTLS_PK_C
#define MBEDTLS_PK_PARSE_C
#define MBEDTLS_PK_WRITE_C
54

Juan Castillo's avatar
Juan Castillo committed
55
#define MBEDTLS_PLATFORM_C
56

57
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
Juan Castillo's avatar
Juan Castillo committed
58
59
60
#define MBEDTLS_ECDSA_C
#define MBEDTLS_ECP_C
#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
61
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
Juan Castillo's avatar
Juan Castillo committed
62
#define MBEDTLS_RSA_C
63
#define MBEDTLS_X509_RSASSA_PSS_SUPPORT
Qixiang Xu's avatar
Qixiang Xu committed
64
65
66
67
68
69
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA_AND_ECDSA)
#define MBEDTLS_RSA_C
#define MBEDTLS_X509_RSASSA_PSS_SUPPORT
#define MBEDTLS_ECDSA_C
#define MBEDTLS_ECP_C
#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
70
71
#endif

Juan Castillo's avatar
Juan Castillo committed
72
#define MBEDTLS_SHA256_C
73
74
75
#if (TF_MBEDTLS_HASH_ALG_ID != TF_MBEDTLS_SHA256)
#define MBEDTLS_SHA512_C
#endif
76

Juan Castillo's avatar
Juan Castillo committed
77
#define MBEDTLS_VERSION_C
78

Juan Castillo's avatar
Juan Castillo committed
79
80
#define MBEDTLS_X509_USE_C
#define MBEDTLS_X509_CRT_PARSE_C
81
82

/* MPI / BIGNUM options */
Juan Castillo's avatar
Juan Castillo committed
83
84
#define MBEDTLS_MPI_WINDOW_SIZE              2
#define MBEDTLS_MPI_MAX_SIZE               256
85
86

/* Memory buffer allocator options */
Juan Castillo's avatar
Juan Castillo committed
87
#define MBEDTLS_MEMORY_ALIGN_MULTIPLE        8
88

89
#ifndef __ASSEMBLER__
90
91
/* System headers required to build mbed TLS with the current configuration */
#include <stdlib.h>
92
#include <mbedtls/check_config.h>
93
#endif
94

95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Determine Mbed TLS heap size
 * 13312 = 13*1024
 * 7168 = 7*1024
 */
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA) \
	|| (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA_AND_ECDSA)
#define TF_MBEDTLS_HEAP_SIZE		U(13312)
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
#define TF_MBEDTLS_HEAP_SIZE		U(7168)
#endif

107
#endif /* MBEDTLS_CONFIG_H */