https://github.com/mupq/pqm4
Revision 0f29c2a69b58d6c86b5e0c815df70929c8a74e46 authored by Ko- on 29 May 2019, 12:50:00 UTC, committed by GitHub on 29 May 2019, 12:50:00 UTC
* Update mupq

* Update benchmarks NTRU Prime

* Remove NTRU Prime from Round 1 list in README
1 parent 31280bc
Raw File
Tip revision: 0f29c2a69b58d6c86b5e0c815df70929c8a74e46 authored by Ko- on 29 May 2019, 12:50:00 UTC
Update NTRU Prime to Round 2 and add parameter sets (#91)
Tip revision: 0f29c2a
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