tests: New style fuzzing tools for EAPOL-Key frame processing
These are newer versions of tests/test-eapol tool. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
f86e6c3d95
commit
150b9dc547
6 changed files with 712 additions and 0 deletions
28
tests/fuzzing/eapol-key-auth/Makefile
Normal file
28
tests/fuzzing/eapol-key-auth/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
|||
all: eapol-key-auth
|
||||
include ../rules.include
|
||||
|
||||
CFLAGS += -DCONFIG_IEEE80211R_AP
|
||||
CFLAGS += -DCONFIG_IEEE80211W
|
||||
CFLAGS += -DCONFIG_IEEE80211R
|
||||
CFLAGS += -DCONFIG_TDLS
|
||||
|
||||
LIBS += $(SRC)/common/libcommon.a
|
||||
LIBS += $(SRC)/crypto/libcrypto.a
|
||||
LIBS += $(SRC)/tls/libtls.a
|
||||
LIBS += $(SRC)/eap_common/libeap_common.a
|
||||
LIBS += $(SRC)/l2_packet/libl2_packet.a
|
||||
LIBS += $(SRC)/utils/libutils.a
|
||||
LIBS += $(SRC)/wps/libwps.a
|
||||
LIBS += $(SRC)/eapol_auth/libeapol_auth.a
|
||||
LIBS += $(SRC)/eap_server/libeap_server.a
|
||||
LIBS += $(SRC)/ap/libap.a
|
||||
LIBS += $(SRC)/radius/libradius.a
|
||||
|
||||
eapol-key-auth: eapol-key-auth.o $(OBJS) $(LIBS)
|
||||
$(LDO) $(LDFLAGS) -o $@ $^ -Wl,--start-group $(LIBS) -Wl,--end-group
|
||||
|
||||
clean:
|
||||
$(MAKE) -C $(SRC) clean
|
||||
rm -f eapol-key-auth *~ *.o *.d ../*~ ../*.o ../*.d
|
||||
|
||||
-include $(OBJS:%.o=%.d)
|
Loading…
Add table
Add a link
Reference in a new issue