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
convert_benchmarks.py
#!/usr/bin/env python3
import sys
from mupq import mupq
    
def usage():  
    print("Usage: python3 convert_benchmarks.py csv|md")
    sys.exit(1) 
 
if __name__ == "__main__":
    if len(sys.argv) != 2:
        usage()
    if sys.argv[1] == "csv": 
        converter = mupq.CsvConverter()
    elif sys.argv[1] == "md":
        converter = mupq.MarkdownConverter()
    else:
        usage()
    converter.convert()
back to top