blob: d6a4cc3c37b133f057fd9e4715d05652c57a6b7b [file] [log] [blame]
Yann Gautier8ace2282024-12-11 16:29:50 +01001/*
2 * Copyright (c) 2025, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <default_mbedtls_config.h>
8
9/* MPI / BIGNUM options */
10#undef MBEDTLS_MPI_WINDOW_SIZE
11#define MBEDTLS_MPI_WINDOW_SIZE 2
12
13/*
14 * Mbed TLS heap size is small as we only use the asn1
15 * parsing functions
16 * digest, signature and crypto algorithm are done by
17 * other library.
18 */
19#undef TF_MBEDTLS_HEAP_SIZE
20#define TF_MBEDTLS_HEAP_SIZE U(5120)