2022-06-01 21:47:46 +02:00
|
|
|
config BR2_PACKAGE_WOLFTPM
|
|
|
|
bool "wolftpm"
|
|
|
|
help
|
|
|
|
wolfTPM is a portable, open-source TPM 2.0 stack with
|
|
|
|
backward API compatibility, designed for embedded use.
|
|
|
|
No external dependencies, compact code size with low
|
|
|
|
resource usage.
|
|
|
|
|
|
|
|
https://www.wolfssl.com/
|
|
|
|
|
2022-06-12 10:45:37 +02:00
|
|
|
if BR2_PACKAGE_WOLFTPM
|
|
|
|
|
|
|
|
config BR2_PACKAGE_WOLFTPM_WOLFCRYPT
|
|
|
|
bool "wolfCrypt hooks"
|
|
|
|
default y
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # wolfssl
|
|
|
|
depends on !BR2_STATIC_LIBS # wolfssl-all
|
|
|
|
select BR2_PACKAGE_WOLFSSL
|
|
|
|
# not mandatory, but needed to get all features
|
|
|
|
select BR2_PACKAGE_WOLFSSL_ALL
|
|
|
|
help
|
|
|
|
Enable wolfCrypt hooks for RNG, Auth Sessions and Parameter
|
|
|
|
encryption. Disabling this option is not recommended as it
|
|
|
|
could create a security breach in most environments.
|
|
|
|
|
|
|
|
comment "wolfCrypt hooks need a toolchain w/ threads, dynamic library"
|
2022-06-01 21:47:46 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
2022-06-12 10:45:37 +02:00
|
|
|
|
|
|
|
endif
|