File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -131,14 +131,14 @@ fn main() {
131
131
conf. file ( "../../ext/mbedtls/library/psa_crypto.c" ) ;
132
132
conf. file ( "../../ext/mbedtls/library/psa_crypto_cipher.c" ) ;
133
133
conf. file ( "../../ext/mbedtls/library/psa_crypto_client.c" ) ;
134
- conf. file ( "../../ext/mbedtls/library/psa_crypto_driver_wrappers.c" ) ;
135
134
conf. file ( "../../ext/mbedtls/library/psa_crypto_ecp.c" ) ;
136
135
conf. file ( "../../ext/mbedtls/library/psa_crypto_hash.c" ) ;
137
136
conf. file ( "../../ext/mbedtls/library/psa_crypto_mac.c" ) ;
138
137
conf. file ( "../../ext/mbedtls/library/psa_crypto_rsa.c" ) ;
139
138
conf. file ( "../../ext/mbedtls/library/psa_crypto_slot_management.c" ) ;
140
139
conf. file ( "../../ext/mbedtls/library/psa_crypto_storage.c" ) ;
141
140
conf. file ( "../../ext/mbedtls/library/psa_its_file.c" ) ;
141
+ conf. file ( "../../ext/mbedtls/library/psa_util.c" ) ;
142
142
conf. file ( "../../ext/mbedtls/library/ripemd160.c" ) ;
143
143
conf. file ( "../../ext/mbedtls/library/rsa_alt_helpers.c" ) ;
144
144
conf. file ( "../../ext/mbedtls/library/sha1.c" ) ;
Original file line number Diff line number Diff line change 22
22
#define MBEDTLS_BIGNUM_C
23
23
#define MBEDTLS_MD_C
24
24
#define MBEDTLS_OID_C
25
+ #define MBEDTLS_CIPHER_C
25
26
#if defined(MCUBOOT_SIGN_EC384 )
26
27
#define MBEDTLS_SHA384_C
27
28
#define MBEDTLS_SHA512_C
Original file line number Diff line number Diff line change 63
63
64
64
/* mbed TLS modules */
65
65
#define MBEDTLS_ASN1_PARSE_C
66
+ #define MBEDTLS_ASN1_WRITE_C
66
67
#define MBEDTLS_BIGNUM_C
67
68
#define MBEDTLS_MD_C
68
69
#define MBEDTLS_OID_C
72
73
#define MBEDTLS_CIPHER_C
73
74
#define MBEDTLS_NIST_KW_C
74
75
75
- /* Save RAM by adjusting to our exact needs */
76
- #define MBEDTLS_ECP_MAX_BITS 2048
77
- #define MBEDTLS_MPI_MAX_SIZE 256
78
-
79
76
#define MBEDTLS_SSL_MAX_CONTENT_LEN 1024
80
77
81
78
/* Save ROM and a few bytes of RAM by specifying our own ciphersuite list */
You can’t perform that action at this time.
0 commit comments