blob: 7bb7f467e415f0b50d96586a8d2bcb5494e3d495 [file] [log] [blame]
Jamie Fox0e54ebc2019-04-09 14:21:04 +01001/*
Jamie Fox98ab4412020-01-17 17:12:30 +00002 * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
Jamie Fox0e54ebc2019-04-09 14:21:04 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __TFM_MBEDCRYPTO_INCLUDE_H__
9#define __TFM_MBEDCRYPTO_INCLUDE_H__
10
Jamie Fox98ab4412020-01-17 17:12:30 +000011/* Define PSA_CRYPTO_SECURE to signal that we are compiling for the SPE */
12#define PSA_CRYPTO_SECURE 1
Jamie Fox0e54ebc2019-04-09 14:21:04 +010013/* Include the crypto_spe.h header before including the PSA Crypto header from
14 * Mbed Crypto
15 */
16#include "crypto_spe.h"
Raef Colesabfe81a2020-07-10 09:52:34 +010017#include "psa/crypto.h"
Jamie Fox0e54ebc2019-04-09 14:21:04 +010018
19#endif /* __TFM_MBEDCRYPTO_INCLUDE_H__ */