1 /* 2 * Copyright (c) 2019-2021, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __TFM_MBEDCRYPTO_INCLUDE_H__ 9 #define __TFM_MBEDCRYPTO_INCLUDE_H__ 10 11 /* Define PSA_CRYPTO_SECURE to signal that we are compiling for the SPE */ 12 #define PSA_CRYPTO_SECURE 1 13 14 /* Include the crypto_spe.h header before including the PSA Crypto header from 15 * Mbed Crypto 16 */ 17 #include "crypto_spe.h" 18 #include "psa/crypto.h" 19 20 #endif /* __TFM_MBEDCRYPTO_INCLUDE_H__ */ 21