@@ -108,6 +108,7 @@ fn main() {
108
108
conf. file ( "../../ext/mbedtls/library/chachapoly.c" ) ;
109
109
conf. file ( "../../ext/mbedtls/library/cipher.c" ) ;
110
110
conf. file ( "../../ext/mbedtls/library/cipher_wrap.c" ) ;
111
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
111
112
conf. file ( "../../ext/mbedtls/library/ctr_drbg.c" ) ;
112
113
conf. file ( "../../ext/mbedtls/library/des.c" ) ;
113
114
conf. file ( "../../ext/mbedtls/library/ecdsa.c" ) ;
@@ -130,14 +131,14 @@ fn main() {
130
131
conf. file ( "../../ext/mbedtls/library/psa_crypto.c" ) ;
131
132
conf. file ( "../../ext/mbedtls/library/psa_crypto_cipher.c" ) ;
132
133
conf. file ( "../../ext/mbedtls/library/psa_crypto_client.c" ) ;
133
- conf. file ( "../../ext/mbedtls/library/psa_crypto_driver_wrappers.c" ) ;
134
134
conf. file ( "../../ext/mbedtls/library/psa_crypto_ecp.c" ) ;
135
135
conf. file ( "../../ext/mbedtls/library/psa_crypto_hash.c" ) ;
136
136
conf. file ( "../../ext/mbedtls/library/psa_crypto_mac.c" ) ;
137
137
conf. file ( "../../ext/mbedtls/library/psa_crypto_rsa.c" ) ;
138
138
conf. file ( "../../ext/mbedtls/library/psa_crypto_slot_management.c" ) ;
139
139
conf. file ( "../../ext/mbedtls/library/psa_crypto_storage.c" ) ;
140
140
conf. file ( "../../ext/mbedtls/library/psa_its_file.c" ) ;
141
+ conf. file ( "../../ext/mbedtls/library/psa_util.c" ) ;
141
142
conf. file ( "../../ext/mbedtls/library/ripemd160.c" ) ;
142
143
conf. file ( "../../ext/mbedtls/library/rsa_alt_helpers.c" ) ;
143
144
conf. file ( "../../ext/mbedtls/library/sha1.c" ) ;
@@ -169,6 +170,9 @@ fn main() {
169
170
170
171
conf. file ( "../../ext/mbedtls/library/rsa.c" ) ;
171
172
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
173
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
174
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
175
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
172
176
conf. file ( "../../ext/mbedtls/library/platform.c" ) ;
173
177
conf. file ( "../../ext/mbedtls/library/platform_util.c" ) ;
174
178
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
@@ -202,6 +206,9 @@ fn main() {
202
206
203
207
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
204
208
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
209
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
210
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
211
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
205
212
conf. file ( "../../ext/mbedtls/library/ecdsa.c" ) ;
206
213
conf. file ( "../../ext/mbedtls/library/ecp.c" ) ;
207
214
conf. file ( "../../ext/mbedtls/library/ecp_curves.c" ) ;
@@ -221,6 +228,9 @@ fn main() {
221
228
conf. file ( "csupport/keys.c" ) ;
222
229
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
223
230
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
231
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
232
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
233
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
224
234
conf. file ( "../../ext/mbedtls/library/ecp.c" ) ;
225
235
conf. file ( "../../ext/mbedtls/library/ecp_curves.c" ) ;
226
236
conf. file ( "../../ext/mbedtls/library/platform.c" ) ;
@@ -282,6 +292,9 @@ fn main() {
282
292
conf. file ( "../../ext/mbedtls/library/md.c" ) ;
283
293
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
284
294
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
295
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
296
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
297
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
285
298
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
286
299
}
287
300
@@ -305,6 +318,7 @@ fn main() {
305
318
conf. conf . include ( "../../ext/mbedtls/library" ) ;
306
319
conf. file ( "../../ext/mbedtls/library/platform_util.c" ) ;
307
320
conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
321
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
308
322
conf. file ( "../../ext/mbedtls/library/cipher.c" ) ;
309
323
conf. file ( "../../ext/mbedtls/library/cipher_wrap.c" ) ;
310
324
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
@@ -369,6 +383,9 @@ fn main() {
369
383
conf. file ( "../../ext/mbedtls/library/sha256.c" ) ;
370
384
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
371
385
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
386
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
387
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
388
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
372
389
conf. file ( "../../ext/mbedtls/library/ecdh.c" ) ;
373
390
conf. file ( "../../ext/mbedtls/library/md.c" ) ;
374
391
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
0 commit comments