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
test.py
#!/usr/bin/env python3
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.SimpleTest(settings, platform)
        test.test_all(rest)
back to top