From a77fdb8645927dd5a2e3398106669056e8094c32 Mon Sep 17 00:00:00 2001 From: JulioLoayzaM Date: Mon, 25 Nov 2024 00:22:41 +0100 Subject: [PATCH] fix(constants): enable output and harness for ML-DSA and ML-KEM --- crypto_condor/constants.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto_condor/constants.py b/crypto_condor/constants.py index 83477d2..163c87a 100644 --- a/crypto_condor/constants.py +++ b/crypto_condor/constants.py @@ -160,16 +160,16 @@ def get_languages(self): Primitive.MLDSA: { "audit": False, "method": True, - "output": False, + "output": True, "wrapper": True, - "harness": False, + "harness": True, }, Primitive.MLKEM: { "audit": False, "method": True, - "output": False, + "output": True, "wrapper": True, - "harness": False, + "harness": True, }, } """Primitives and their supported CLI modes."""