blob: 69342b19e0c1bc376131eee79e579811beeea079 [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"
17#include "mbedcrypto/psa/crypto.h"
Jamie Fox0e54ebc2019-04-09 14:21:04 +010018
19#endif /* __TFM_MBEDCRYPTO_INCLUDE_H__ */