https://github.com/mupq/pqm4
Revision 844e7cafdb5df8416abef3c03b49edb810b7e396 authored by Matthias J. Kannwischer on 31 August 2021, 07:49:19 UTC, committed by GitHub on 31 August 2021, 07:49:19 UTC
* use publicinputs AES for ntrulpr

* new benchmarks
1 parent 34e5da0
Raw File
Tip revision: 844e7cafdb5df8416abef3c03b49edb810b7e396 authored by Matthias J. Kannwischer on 31 August 2021, 07:49:19 UTC
Use T-Table AES for public inputs in ntrulpr (again) (#212)
Tip revision: 844e7ca
Makefile
.PHONY: all
all: tests tests-bin

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