https://github.com/mupq/pqm4
Revision 3fd51a95451fd0babf3c5559ad336ab9db17ffa9 authored by Matthias J. Kannwischer on 08 December 2020, 16:16:49 UTC, committed by GitHub on 08 December 2020, 16:16:49 UTC
1 parent 34d6ed0
Raw File
Tip revision: 3fd51a95451fd0babf3c5559ad336ab9db17ffa9 authored by Matthias J. Kannwischer on 08 December 2020, 16:16:49 UTC
Save memory space on stack measurement for signatures (#171)
Tip revision: 3fd51a9
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