Add a sample to demonstrate use of persistent keys in the PSA Crypto API. The implementation of the PSA ITS API that allows storage of persistent keys is provided either by the just-introduced secure storage subsystem or by TF-M. Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
11 lines
280 B
Plaintext
11 lines
280 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_MBEDTLS_PSA_CRYPTO_C=y
|
|
|
|
# The default stack size (1024) is not enough for the PSA Crypto core.
|
|
# On top of that, the ITS implementation uses the stack for buffers.
|
|
CONFIG_MAIN_STACK_SIZE=3072
|
|
|
|
CONFIG_SECURE_STORAGE=y
|