Fixed FrodoKEM neg bug (sending cipheropts,opts order)

Also tweaked pad size random to use full range; removed some junk logging
This commit is contained in:
Russ Magee 2021-01-10 22:04:52 -08:00
parent 3193ede825
commit c23edc6874
7 changed files with 71 additions and 71 deletions

View file

@ -42,7 +42,7 @@ endif
INSTPREFIX = /usr/local
all: common client server
all: common client server #seccheck
clean:
@echo "Make: $(MAKE)"
@ -78,6 +78,10 @@ else
$(MAKE) BUILDOPTS=$(BUILDOPTS) -C xsd
endif
#seccheck:
# grep -r "logPlainText.*true" .
# if [ $$? -eq 0 ]; then echo "WARNING plaintext debug is enabled"; exit 1; fi
vis:
@which go-callvis >/dev/null 2>&1; \
stat=$$?; if [ $$stat -ne "0" ]; then \