https://github.com/mupq/pqm4
Revision 8c23cf3e4b18f0d02b317b4b7b530e4c0594a373 authored by Matthias J. Kannwischer on 19 October 2020, 08:28:14 UTC, committed by Matthias J. Kannwischer on 19 October 2020, 08:28:14 UTC
1 parent 56417d9
Raw File
Tip revision: 8c23cf3e4b18f0d02b317b4b7b530e4c0594a373 authored by Matthias J. Kannwischer on 19 October 2020, 08:28:14 UTC
Add speed and stack optimized implementations from https://eprint.iacr.org/2020/1278.pdf
Tip revision: 8c23cf3
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