1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/cryptoauthlib/Makefile.dep

38 lines
1.1 KiB
Makefile

USEMODULE += ztimer
USEMODULE += ztimer_usec
FEATURES_REQUIRED += periph_i2c
FEATURES_OPTIONAL += periph_i2c_reconfigure
DEFAULT_MODULE += auto_init_security
USEMODULE += cryptoauthlib_contrib
ifneq (,$(filter cryptoauthlib_test,$(USEMODULE)))
USEMODULE += cryptoauthlib_test_jwt
USEMODULE += cryptoauthlib_test_tng
USEMODULE += cryptoauthlib_test_atcacert
USEMODULE += cryptoauthlib_test_api_atcab
USEMODULE += cryptoauthlib_test_api_calib
USEMODULE += cryptoauthlib_test_api_crypto
USEMODULE += cryptoauthlib_test_vectors
USEMODULE += cryptoauthlib_test_third_party_unity
endif
# Some EFM32 CPU families define AES_COUNT, which is also defined by this
# library.
FEATURES_BLACKLIST += arch_efm32
ifneq (,$(filter psa_crypto,$(USEMODULE)))
USEMODULE += psa_atca_driver
endif
ifneq (,$(filter psa_secure_element_ateccx08a_ecc_p256, $(USEMODULE)))
USEMODULE += psa_asymmetric
endif
ifneq (,$(filter psa_secure_element_ateccx08a_cipher_aes_128, $(USEMODULE)))
USEMODULE += psa_cipher
endif
ifneq (,$(filter psa_secure_element_ateccx08a_hmac_sha256, $(USEMODULE)))
USEMODULE += psa_mac
endif