Skip to content

Commit

Permalink
Table shows if a generator passed all verifiers
Browse files Browse the repository at this point in the history
ounsworth authored Jul 22, 2024
1 parent 9ab0199 commit 6be9400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pqc_report_writer_common.py
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ def passedAllVerifiers(generator, oid, algorithmVerificationResults) -> int:
return -1
elif not passedOne and failedOne:
return 0
elif passedone and failedOne:
elif passedOne and failedOne:
return 1
elif passedOne and not failedOne:
return 2

0 comments on commit 6be9400

Please sign in to comment.