Skip to content

Commit

Permalink
tools renode: fix ext_LMS and ext_XMSS sign arg check.
Browse files Browse the repository at this point in the history
philljj authored and danielinux committed Oct 30, 2024

Verified

This commit was signed with the committer’s verified signature.
psafont Pau Ruiz Safont
1 parent cfd65a8 commit c4f87c6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tools/test-renode.mk
Original file line number Diff line number Diff line change
@@ -95,12 +95,11 @@ ifeq ($(SIGN),RSA4096)
SIGN_ARGS+= --rsa4096
endif

ifeq ($(SIGN),LMS)
SIGN_ARGS+= --lms
ifneq (,$(filter $(SIGN), LMS ext_LMS))
SIGN_ARGS+= --lms
endif

ifeq ($(SIGN),XMSS)
SIGN_ARGS+= --xmss
ifneq (,$(filter $(SIGN), XMSS ext_XMSS))
SIGN_ARGS+= --xmss
endif

ifeq ($(SIGN),ML_DSA)

0 comments on commit c4f87c6

Please sign in to comment.