Skip to content

Commit

Permalink
fix(constants): enable output and harness for ML-DSA and ML-KEM
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioLoayzaM committed Nov 25, 2024
1 parent 209b627 commit a77fdb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crypto_condor/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit a77fdb8

Please sign in to comment.