https://github.com/mupq/pqm4
Revision a1bbbd9c541b972740ee1a1fba6d80958a916927 authored by Matthias J. Kannwischer on 27 April 2020, 23:26:41 UTC, committed by Matthias J. Kannwischer on 27 April 2020, 23:26:41 UTC
1 parent 479f4a5
Raw File
Tip revision: a1bbbd9c541b972740ee1a1fba6d80958a916927 authored by Matthias J. Kannwischer on 27 April 2020, 23:26:41 UTC
fix lac to adhere to the new aes keyexp api
Tip revision: a1bbbd9
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