Revision 9ff685e0ffbfdbafb745cb6ff56ca3f549173f12 authored by dean3154 on 12 August 2021, 08:50:15 UTC, committed by GitHub on 12 August 2021, 08:50:15 UTC
* NTRU Prime m4 implementation for six parameter sets

* NTRU Prime m4 implementation for six parameter sets

* delete .DS_Store

* delete useless files & change to asm function [jump753divsteps.c]

* update mupq to include ntruprime round 3 parameter sets

* modified arith.h

* delete useless comment

* using stack memory instead of static memory

* update mupq

* fix buffer size

* add basemul_8x8_156

* update skiplist

* add benchmarks

* eliminate more bss

* update benchmarks for sntrup761

Co-authored-by: Matthias J. Kannwischer <matthias@kannwischer.eu>
Co-authored-by: Trista Li <trista5658321@gmail.com>
1 parent 0b3519d
Raw File
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import parse_arguments, get_platform

import sys

if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        test = mupq.SimpleTest(settings, platform)
        test.test_all(rest)
back to top