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
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import M4Settings
from mupq import mupq


if __name__ == "__main__":
    mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
back to top