https://github.com/mupq/pqm4
Revision 4178be97a7b87432f51529e4d4e7c30f2f461005 authored by Matthias J. Kannwischer on 19 October 2020, 10:42:30 UTC, committed by Matthias J. Kannwischer on 19 October 2020, 10:42:30 UTC
1 parent 8c23cf3
Raw File
Tip revision: 4178be97a7b87432f51529e4d4e7c30f2f461005 authored by Matthias J. Kannwischer on 19 October 2020, 10:42:30 UTC
dilithium benchmarks
Tip revision: 4178be9
testvectors.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.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top