https://github.com/mupq/pqm4
Revision 7aa3be88486eea5aba72a69934c9bbe3ea540f9c authored by Ko- on 22 April 2020, 14:14:14 UTC, committed by Ko- on 22 April 2020, 14:14:14 UTC
Now with 100 executions instead of 1. Doesn't change the results at all
though.
1 parent 87dd5c1
Raw File
Tip revision: 7aa3be88486eea5aba72a69934c9bbe3ea540f9c authored by Ko- on 22 April 2020, 14:14:14 UTC
Extend SIKE M4 benchmarks
Tip revision: 7aa3be8
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        test = mupq.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top