Revision 970afc2593e4a2903c04b4a185084a666d4d791e authored by Matthias J. Kannwischer on 07 October 2019, 13:43:24 UTC, committed by Ko- on 07 October 2019, 13:43:24 UTC
* change naming of falcon parameter sets to pqclean naming

* add kyber-90 parameter sets

* use our AES API in Kyber

* fix symlinks

* update pqclean; make kyber use fast aes

* update kyber-90s benchmarks
1 parent fdd41fa
Raw File
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