tests: Add eapol-fuzzer
This program can be used to run fuzzing tests for areas related to EAPOL frame parsing and processing on the supplicant side. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
a65d7495b5
commit
46c3befe24
10 changed files with 368 additions and 15 deletions
|
@ -1,8 +1,30 @@
|
|||
all:
|
||||
@echo Nothing to be made.
|
||||
all: librsn_supp.a
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.d *.gcno *.gcda *.gcov
|
||||
rm -f *~ *.o *.d *.gcno *.gcda *.gcov librsn_supp.a
|
||||
|
||||
install:
|
||||
@echo Nothing to be made.
|
||||
|
||||
include ../lib.rules
|
||||
|
||||
CFLAGS += -DCONFIG_IEEE80211W
|
||||
CFLAGS += -DCONFIG_IEEE80211R
|
||||
CFLAGS += -DCONFIG_PEERKEY
|
||||
CFLAGS += -DCONFIG_TDLS
|
||||
CFLAGS += -DCONFIG_WNM
|
||||
CFLAGS += -DIEEE8021X_EAPOL
|
||||
|
||||
LIB_OBJS= \
|
||||
pmksa_cache.o \
|
||||
wpa_ft.o \
|
||||
peerkey.o \
|
||||
tdls.o \
|
||||
preauth.o \
|
||||
wpa.o \
|
||||
wpa_ie.o
|
||||
|
||||
librsn_supp.a: $(LIB_OBJS)
|
||||
$(AR) crT $@ $?
|
||||
|
||||
-include $(OBJS:%.o=%.d)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue