MFC authentication protocol example code, that served to generate the paper annexes and could be useful as implementation ref for other researches

This commit is contained in:
Philippe Teuwen 2024-08-23 18:08:28 +02:00
commit a17507d4d3
2 changed files with 384 additions and 0 deletions

View file

@ -0,0 +1,14 @@
ROOTPATH = ../../..
MYSRCPATHS = $(ROOTPATH)/common $(ROOTPATH)/common/crapto1
MYSRCS = crypto1.c crapto1.c bucketsort.c
MYINCLUDES = -I$(ROOTPATH)/include -I$(ROOTPATH)/common
MYCFLAGS = -O3 -Wno-inline
MYDEFS =
MYLDLIBS =
BINS = mfc-protocol-demo
INSTALLTOOLS = $(BINS)
include $(ROOTPATH)/Makefile.host
mfc-protocol-demo: $(OBJDIR)/mfc-protocol-demo.o $(MYOBJS)