@@ -109,6 +109,7 @@ fn main() {
109
109
conf. file ( "../../ext/mbedtls/library/chachapoly.c" ) ;
110
110
conf. file ( "../../ext/mbedtls/library/cipher.c" ) ;
111
111
conf. file ( "../../ext/mbedtls/library/cipher_wrap.c" ) ;
112
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
112
113
conf. file ( "../../ext/mbedtls/library/ctr_drbg.c" ) ;
113
114
conf. file ( "../../ext/mbedtls/library/des.c" ) ;
114
115
conf. file ( "../../ext/mbedtls/library/ecdsa.c" ) ;
@@ -131,14 +132,14 @@ fn main() {
131
132
conf. file ( "../../ext/mbedtls/library/psa_crypto.c" ) ;
132
133
conf. file ( "../../ext/mbedtls/library/psa_crypto_cipher.c" ) ;
133
134
conf. file ( "../../ext/mbedtls/library/psa_crypto_client.c" ) ;
134
- conf. file ( "../../ext/mbedtls/library/psa_crypto_driver_wrappers.c" ) ;
135
135
conf. file ( "../../ext/mbedtls/library/psa_crypto_ecp.c" ) ;
136
136
conf. file ( "../../ext/mbedtls/library/psa_crypto_hash.c" ) ;
137
137
conf. file ( "../../ext/mbedtls/library/psa_crypto_mac.c" ) ;
138
138
conf. file ( "../../ext/mbedtls/library/psa_crypto_rsa.c" ) ;
139
139
conf. file ( "../../ext/mbedtls/library/psa_crypto_slot_management.c" ) ;
140
140
conf. file ( "../../ext/mbedtls/library/psa_crypto_storage.c" ) ;
141
141
conf. file ( "../../ext/mbedtls/library/psa_its_file.c" ) ;
142
+ conf. file ( "../../ext/mbedtls/library/psa_util.c" ) ;
142
143
conf. file ( "../../ext/mbedtls/library/ripemd160.c" ) ;
143
144
conf. file ( "../../ext/mbedtls/library/rsa_alt_helpers.c" ) ;
144
145
conf. file ( "../../ext/mbedtls/library/sha1.c" ) ;
@@ -170,6 +171,9 @@ fn main() {
170
171
171
172
conf. file ( "../../ext/mbedtls/library/rsa.c" ) ;
172
173
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
174
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
175
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
176
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
173
177
conf. file ( "../../ext/mbedtls/library/platform.c" ) ;
174
178
conf. file ( "../../ext/mbedtls/library/platform_util.c" ) ;
175
179
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
@@ -203,6 +207,9 @@ fn main() {
203
207
204
208
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
205
209
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
210
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
211
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
212
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
206
213
conf. file ( "../../ext/mbedtls/library/ecdsa.c" ) ;
207
214
conf. file ( "../../ext/mbedtls/library/ecp.c" ) ;
208
215
conf. file ( "../../ext/mbedtls/library/ecp_curves.c" ) ;
@@ -222,6 +229,9 @@ fn main() {
222
229
conf. file ( "csupport/keys.c" ) ;
223
230
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
224
231
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
232
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
233
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
234
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
225
235
conf. file ( "../../ext/mbedtls/library/ecp.c" ) ;
226
236
conf. file ( "../../ext/mbedtls/library/ecp_curves.c" ) ;
227
237
conf. file ( "../../ext/mbedtls/library/platform.c" ) ;
@@ -285,6 +295,9 @@ fn main() {
285
295
conf. file ( "../../ext/mbedtls/library/md.c" ) ;
286
296
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
287
297
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
298
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
299
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
300
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
288
301
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
289
302
}
290
303
@@ -308,6 +321,7 @@ fn main() {
308
321
conf. conf . include ( "../../ext/mbedtls/library" ) ;
309
322
conf. file ( "../../ext/mbedtls/library/platform_util.c" ) ;
310
323
conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
324
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
311
325
conf. file ( "../../ext/mbedtls/library/cipher.c" ) ;
312
326
conf. file ( "../../ext/mbedtls/library/cipher_wrap.c" ) ;
313
327
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
@@ -372,6 +386,9 @@ fn main() {
372
386
conf. file ( "../../ext/mbedtls/library/sha256.c" ) ;
373
387
conf. file ( "../../ext/mbedtls/library/asn1parse.c" ) ;
374
388
conf. file ( "../../ext/mbedtls/library/bignum.c" ) ;
389
+ conf. file ( "../../ext/mbedtls/library/bignum_core.c" ) ;
390
+ conf. file ( "../../ext/mbedtls/library/constant_time.c" ) ;
391
+ conf. file ( "../../ext/mbedtls/library/nist_kw.c" ) ;
375
392
conf. file ( "../../ext/mbedtls/library/ecdh.c" ) ;
376
393
conf. file ( "../../ext/mbedtls/library/md.c" ) ;
377
394
conf. file ( "../../ext/mbedtls/library/aes.c" ) ;
0 commit comments