mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #13003 from dgreen-arm/add-feature-experimental
Mark PSA as an experimental APIpull/13054/head mbed-os-6.0.0-rc2
commit
ced3b1cf8e
|
@ -1,13 +1,14 @@
|
||||||
^BUILD
|
^BUILD
|
||||||
^cmsis
|
^cmsis
|
||||||
^components/TARGET_PSA/services/attestation/attestation.h
|
|
||||||
^components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl
|
|
||||||
^components/TARGET_PSA/services/attestation/qcbor
|
|
||||||
^components/TARGET_PSA/services/crypto/COMPONENT_PSA_SRV_IPC/crypto_struct_ipc.h
|
|
||||||
^components/TARGET_PSA/TARGET_TFM
|
|
||||||
^components/TARGET_PSA/TESTS
|
|
||||||
^features/cryptocell
|
^features/cryptocell
|
||||||
^features/FEATURE_BLE
|
^features/FEATURE_BLE
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_MBED_PSA_SRV
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/services/attestation/attestation.h
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/services/attestation/qcbor
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/services/crypto/COMPONENT_PSA_SRV_IPC/crypto_struct_ipc.h
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/TARGET_TFM
|
||||||
|
^features/FEATURE_EXPERIMENTAL_API/TARGET_PSA/TARGET_MBED_PSA_SRV/TESTS
|
||||||
^features/frameworks
|
^features/frameworks
|
||||||
^features/lwipstack/lwip
|
^features/lwipstack/lwip
|
||||||
^features/lwipstack/lwip-sys
|
^features/lwipstack/lwip-sys
|
||||||
|
|
|
@ -6,7 +6,7 @@ Folders containing files under different permissive license than Apache 2.0 are
|
||||||
- [cmsis](./cmsis) - MIT, BSD-3-Clause
|
- [cmsis](./cmsis) - MIT, BSD-3-Clause
|
||||||
- [components/802.15.4_RF/mcr20a-rf-driver](./components/802.15.4_RF/mcr20a-rf-driver) - BSD-3-Clause
|
- [components/802.15.4_RF/mcr20a-rf-driver](./components/802.15.4_RF/mcr20a-rf-driver) - BSD-3-Clause
|
||||||
- [components/TARGET_PSA/TARGET_TFM](./components/TARGET_PSA/TARGET_TFM) - BSD-3-Clause
|
- [components/TARGET_PSA/TARGET_TFM](./components/TARGET_PSA/TARGET_TFM) - BSD-3-Clause
|
||||||
- [components/TARGET_PSA/TARGET_PSA/services/attestation](./components/TARGET_PSA/services/attestation) - BSD-3-Clause
|
- [components/TARGET_PSA/TARGET_MBED_PSA_SRV/services/attestation](./components/TARGET_PSA/TARGET_MBED_PSA_SRV/services/attestation) - BSD-3-Clause
|
||||||
- [features/cryptocell/FEATURE_CRYPTOCELL310](./features/cryptocell/FEATURE_CRYPTOCELL310) - ARM Object Code and Header Files License
|
- [features/cryptocell/FEATURE_CRYPTOCELL310](./features/cryptocell/FEATURE_CRYPTOCELL310) - ARM Object Code and Header Files License
|
||||||
- [features/FEATURE_BOOTLOADER](./features/FEATURE_BOOTLOADER) - PBL
|
- [features/FEATURE_BOOTLOADER](./features/FEATURE_BOOTLOADER) - PBL
|
||||||
- [features/FEATURE_BLE/targets](./features/FEATURE_BLE/targets) - BSD-style, PBL, MIT-style
|
- [features/FEATURE_BLE/targets](./features/FEATURE_BLE/targets) - BSD-style, PBL, MIT-style
|
||||||
|
|
|
@ -15,12 +15,12 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "psa/crypto.h"
|
|
||||||
|
|
||||||
#if ((!defined(TARGET_PSA)) || (!defined(MBEDTLS_PSA_CRYPTO_C)))
|
#if ((!defined(TARGET_PSA)) || (!defined(MBEDTLS_PSA_CRYPTO_C)))
|
||||||
#error [NOT_SUPPORTED] Mbed Crypto is OFF - skipping.
|
#error [NOT_SUPPORTED] Mbed Crypto is OFF - skipping.
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#include "psa/crypto.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "greentea-client/test_env.h"
|
#include "greentea-client/test_env.h"
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue