You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
325 B
12 lines
325 B
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
zephyr_library() |
|
zephyr_library_sources(jwt.c) |
|
|
|
zephyr_library_sources_ifdef(CONFIG_JWT_SIGN_RSA_LEGACY jwt_legacy_rsa.c) |
|
|
|
if (CONFIG_JWT_SIGN_RSA_PSA OR CONFIG_JWT_SIGN_ECDSA_PSA) |
|
zephyr_library_sources(jwt_psa.c) |
|
endif() |
|
|
|
zephyr_library_link_libraries_ifdef(CONFIG_MBEDTLS mbedTLS)
|
|
|