1# Private config options for PSA level 1 application 2 3# Copyright (c) 2019,2020 Linaro 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "PSA level 1 sample application" 7 8menu "Application configuration" 9 10module = PSA 11module-str = psa 12source "subsys/logging/Kconfig.template.log_config" 13 14endmenu 15 16config PSA_SHELL 17 bool "Enable the 'psa' shell command" 18 depends on SHELL 19 help 20 Enabling this option will make the 'psa' shell command available. 21 22choice 23 prompt "Private Key" 24 default PRIVATE_KEY_RANDOM 25 26config PRIVATE_KEY_STATIC 27 bool "Static" 28 help 29 A static key value will be used for the elliptic curve 'secp256r1' 30 private key. 31 32config PRIVATE_KEY_RANDOM 33 bool "Random" 34 help 35 A randomly generated value will be used for the elliptic curve 36 'secp256r1' private key. 37 38endchoice 39 40source "Kconfig.zephyr" 41