2021-10-25 10:19:55 +02:00
|
|
|
config BR2_PACKAGE_SOFTHSM2
|
|
|
|
bool "softhsm2"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
2021-11-07 10:52:44 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2021-10-25 10:19:55 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
2021-11-07 10:45:14 +01:00
|
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES
|
2021-10-25 10:19:55 +02:00
|
|
|
help
|
|
|
|
SoftHSM is an implementation of a cryptographic store
|
|
|
|
accessible through a PKCS#11 interface. You can use it
|
|
|
|
to explore PKCS#11 without having a Hardware Security
|
|
|
|
Module.
|
|
|
|
|
|
|
|
https://www.opendnssec.org/softhsm
|
|
|
|
|
2021-11-07 10:52:44 +01:00
|
|
|
comment "softhsm2 needs a toolchain w/ C++, threads, gcc >= 4.8 and dynamic library support"
|
2021-10-25 10:19:55 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
2021-11-07 10:52:44 +01:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
2021-10-25 10:19:55 +02:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|