Skip to content

Commit 47f59b1

Browse files
author
Moran Peker
committed
Correct psa-crypto include
1 parent 89ac107 commit 47f59b1

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_crypto.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "t_cose_crypto.h"
2020
#include "tfm_plat_defs.h"
21-
#include "crypto.h"
21+
#include "psa/crypto.h"
2222
#include "tfm_plat_crypto_keys.h"
2323
#include <string.h>
2424

components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_crypto_keys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "tfm_plat_crypto_keys.h"
20-
#include "crypto.h"
20+
#include "psa/crypto.h"
2121

2222
#include <stdlib.h>
2323
#include <math.h>

components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/psa_inject_attestation_key_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef __PSA_INITIAL_ATTESTATION_IMPL_H__
2020
#define __PSA_INITIAL_ATTESTATION_IMPL_H__
2121

22-
#include "crypto.h"
22+
#include "psa/crypto.h"
2323
#include <stdint.h>
2424
#include <string.h>
2525

components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IPC/psa_attest_inject_key.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "psa_attest_inject_key.h"
20-
#include "crypto.h"
20+
#include "psa/crypto.h"
2121
#include "psa/client.h"
2222
#include "psa_attest_srv_ifs.h"
2323

components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IPC/psa_initial_attestation_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "psa_initial_attestation_api.h"
20-
#include "crypto.h"
20+
#include "psa/crypto.h"
2121
#include "psa/client.h"
2222
#include "attestation.h"
2323
#include <string.h>

components/TARGET_PSA/services/attestation/COMPONENT_SPE/psa_attestation_partition.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "attestation.h"
2929
#include <string.h>
3030
#include "mbedtls/entropy.h"
31-
#include "crypto.h"
31+
#include "psa/crypto.h"
3232

3333
#if defined(PLATFORM_C)
3434
#include "mbedtls/platform.h"

components/TARGET_PSA/services/attestation/psa_attest_inject_key.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef __PSA_INJECT_KEY_H__
2020
#define __PSA_INJECT_KEY_H__
2121

22-
#include "crypto.h"
22+
#include "psa/crypto.h"
2323
#include <stdint.h>
2424
#include <string.h>
2525

0 commit comments

Comments
 (0)