mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
pkg/libcose: remove Monocypher as crypto backend
With the 3.0.0 update of monocypher the API changed enough to break libcose compatibility. This PR removes monocypher from the crypto options. It can be restored as soon as upstream libcose is updated to restore compatibility
This commit is contained in:
parent
bf703a70c3
commit
95fa4bae5a
@ -7,9 +7,6 @@ USEMODULE += random
|
||||
ifneq (,$(filter libcose_crypt_hacl,$(USEMODULE)))
|
||||
USEPKG += hacl
|
||||
endif
|
||||
ifneq (,$(filter libcose_crypt_monocypher,$(USEMODULE)))
|
||||
USEPKG += monocypher
|
||||
endif
|
||||
ifneq (,$(filter libcose_crypt_c25519,$(USEMODULE)))
|
||||
USEPKG += c25519
|
||||
endif
|
||||
|
@ -4,9 +4,6 @@ CFLAGS += -DUSE_CBOR_CONTEXT
|
||||
ifneq (,$(filter libcose_crypt_hacl,$(USEMODULE)))
|
||||
CFLAGS += -DCRYPTO_HACL
|
||||
endif
|
||||
ifneq (,$(filter libcose_crypt_monocypher,$(USEMODULE)))
|
||||
CFLAGS += -DCRYPTO_MONOCYPHER
|
||||
endif
|
||||
ifneq (,$(filter libcose_crypt_c25519,$(USEMODULE)))
|
||||
CFLAGS += -DCRYPTO_C25519
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user