https://github.com/mupq/pqm4
Revision 844e7cafdb5df8416abef3c03b49edb810b7e396 authored by Matthias J. Kannwischer on 31 August 2021, 07:49:19 UTC, committed by GitHub on 31 August 2021, 07:49:19 UTC
* use publicinputs AES for ntrulpr

* new benchmarks
1 parent 34e5da0
Raw File
Tip revision: 844e7cafdb5df8416abef3c03b49edb810b7e396 authored by Matthias J. Kannwischer on 31 August 2021, 07:49:19 UTC
Use T-Table AES for public inputs in ntrulpr (again) (#212)
Tip revision: 844e7ca
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top