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
Makefile
.PHONY: all
all: tests

include mupq/mk/config.mk
include mk/config.mk
include mk/crypto.mk
include mupq/mk/host-crypto.mk
include mupq/mk/rules.mk
include mupq/mk/schemes.mk
include mk/tests.mk

.PHONY: clean libclean

clean: libclean
	rm -rf elf/
	rm -rf bin/
	rm -rf bin-host/
	rm -rf obj/
	rm -rf testvectors/
	rm -rf benchmarks/

.SECONDARY:
back to top