Revision 28eb2d83ee763095e09f0b50e5fad877a32aee19 authored by Matthias J. Kannwischer on 11 June 2020, 02:32:37 UTC, committed by GitHub on 11 June 2020, 02:32:37 UTC
* Update Dilithium

https://github.com/pq-crystals/dilithium/tree/19980fb52ce6b4b9ee0bacc6c63f5b11d0338a8d

* Re-add optimizations from #105

https://eprint.iacr.org/2019/420

* update dilithium benchmarks
1 parent aac104e
Raw File
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