Revision 3200c9e3a29bfd954bacd581cb3b0d6c3c7f73c4 authored by Matthias J. Kannwischer on 31 October 2024, 08:26:08 UTC, committed by GitHub on 31 October 2024, 08:26:08 UTC
* Remove eliminated schemes from NIST PQC digital signature competition NIST announced the second round candidates on October 24, 2024: https://groups.google.com/a/list.nist.gov/g/pqc-forum/c/khAfIZPktRE/m/bBZWmET-AAAJ Eliminated schemes (with implementations in mupq): - ascon-sign - biscuit - meds - sphinca-a - tuov None of those have dedicated implementations in pqm4. aimer and haetae also got eliminated, but remain candidates of KPQC (https://www.kpqc.or.kr/competition.html). Let's keep them around. * adjust README * update mupq * fix aimer skiplist
1 parent 229b36b
testvectors.py
#!/usr/bin/env python3
# SPDX-License-Identifier: Apache-2.0 or CC0-1.0
from mupq import mupq
from interface import parse_arguments, get_platform
import sys
if __name__ == "__main__":
args, rest = parse_arguments()
platform, settings = get_platform(args)
with platform:
test = mupq.TestVectors(settings, platform)
if test.test_all(rest):
sys.exit(1)

Computing file changes ...