https://github.com/mupq/pqm4
Revision 20bdec1d191ef47798742453651cb458baeb11f4 authored by Ko- on 08 October 2019, 10:48:50 UTC, committed by Matthias J. Kannwischer on 08 October 2019, 10:48:50 UTC
* Update mupq; adds ROLLO ref implementations

* Add ROLLO benchmarks
1 parent 970afc2
Raw File
Tip revision: 20bdec1d191ef47798742453651cb458baeb11f4 authored by Ko- on 08 October 2019, 10:48:50 UTC
Add ROLLO-{I,II,III}-{128,192,256} ref implementations (#120)
Tip revision: 20bdec1
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