mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
485 B
Makefile
20 lines
485 B
Makefile
ifneq (,$(filter edhoc-c_crypto_wolfssl,$(USEMODULE)))
|
|
USEPKG += wolfssl
|
|
USEMODULE += wolfcrypt
|
|
USEMODULE += wolfcrypt_aes
|
|
USEMODULE += wolfcrypt_ed25519
|
|
USEMODULE += wolfcrypt_curve25519
|
|
USEMODULE += wolfcrypt_hmac
|
|
USEMODULE += wolfcrypt_random
|
|
USEMODULE += wolfcrypt_sha256
|
|
endif
|
|
|
|
ifneq (,$(filter edhoc-c_crypto_tinycrypt,$(USEMODULE)))
|
|
USEPKG += tinycrypt
|
|
USEPKG += c25519
|
|
endif
|
|
|
|
ifneq (,$(filter edhoc-c_cbor_nanocbor,$(USEMODULE)))
|
|
USEPKG += nanocbor
|
|
endif
|