Add psa crypto C API client
To allow client programs to access the psa crypto service using the
psa crypto C api, a client adapter has been implemented that
maps the api functions to service RPC calls using the packed-c
serialization of the crypto access protocol.
The following files are derived work from the follwoing origin:
Repo https://git.trustedfirmware.org/trusted-firmware-m.git
Version: #442bc936
components/service/crypto/include/psa/crypto.h
components/service/crypto/include/psa/crypto_client_struct.h
components/service/crypto/include/psa/crypto_compat.h
components/service/crypto/include/psa/crypto_extra.h
components/service/crypto/include/psa/crypto_sizes.h
components/service/crypto/include/psa/crypto_struct.h
components/service/crypto/include/psa/crypto_types.h
components/service/crypto/include/psa/crypto_values.h
Signed-off-by: Julian Hall <julian.hall@arm.com>
Change-Id: Iac3c07d813e9245fafca3512c31d4fc09f1ad882
diff --git a/components/service/crypto/provider/mbedcrypto/component.cmake b/components/service/crypto/provider/mbedcrypto/component.cmake
index e9340ec..0df1138 100644
--- a/components/service/crypto/provider/mbedcrypto/component.cmake
+++ b/components/service/crypto/provider/mbedcrypto/component.cmake
@@ -26,6 +26,6 @@
CACHE STRING "Configuration file for Mbed TLS" FORCE)
set(MBEDTLS_EXTRA_INCLUDES
- "${TS_ROOT}/components/service/common"
- "${TS_ROOT}/components/service/secure_storage/client"
+ "${TS_ROOT}/components/service/common/include"
+ "${TS_ROOT}/components/service/secure_storage/include"
CACHE STRING "PSA ITS for Mbed TLS" FORCE)