mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 23:45:47 +00:00
Sort entries alphabetically and cleanup top level menu for each subsystem. Move stats subsystem Kconfig from debug into its own Kconfig. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
30 lines
580 B
Plaintext
30 lines
580 B
Plaintext
# Copyright (c) 2018 Linaro
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig JWT
|
|
bool "JSON Web Token generation"
|
|
select JSON_LIBRARY
|
|
help
|
|
Enable creation of JWT tokens
|
|
|
|
choice
|
|
prompt "JWT signature algorithm"
|
|
default JWT_SIGN_RSA
|
|
depends on JWT
|
|
help
|
|
Select which algorithm to use for signing JWT tokens.
|
|
|
|
config JWT_SIGN_RSA
|
|
bool "Use RSA signature (RS-256)"
|
|
select MBEDTLS
|
|
|
|
config JWT_SIGN_ECDSA
|
|
bool "Use ECDSA signature (ES-256)"
|
|
select TINYCRYPT
|
|
select TINYCRYPT_SHA256
|
|
select TINYCRYPT_ECC_DSA
|
|
select TINYCRYPT_CTR_PRNG
|
|
select TINYCRYPT_AES
|
|
|
|
endchoice
|