https://github.com/mupq/pqm4
Revision 667d80b0550085e5fb507575bdaef0db8e5457c7 authored by Matthias J. Kannwischer on 01 October 2019, 23:48:38 UTC, committed by Ko- on 01 October 2019, 23:48:38 UTC
* change naming of falcon parameter sets to pqclean naming

* ignore rainbow paramter sets

* add benchmarks for clean implementations of  kyber-90s, falcon, and saber

* update mupq to fix SHA2 SPHINCS+ builds
1 parent 7514870
Raw File
Tip revision: 667d80b0550085e5fb507575bdaef0db8e5457c7 authored by Matthias J. Kannwischer on 01 October 2019, 23:48:38 UTC
Update PQClean (#116)
Tip revision: 667d80b
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import M4Settings
from mupq import mupq


if __name__ == "__main__":
    mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
back to top