a4e3691616
In order to be able to perform secure LTF measurements, both the initiator and the responder need to first derive TK and KDK and store them, so they would later be available for the secure LTF negotiation. Add a basic implementation of a PTKSA cache that stores derived TK/KDK which can later be used for secure LTF negotiation, and add it to the build configuration. Signed-off-by: Ilan Peer <ilan.peer@intel.com>
16 lines
290 B
Makefile
16 lines
290 B
Makefile
CFLAGS += -DCONFIG_IEEE80211R
|
|
CFLAGS += -DCONFIG_HS20
|
|
CFLAGS += -DCONFIG_SAE
|
|
CFLAGS += -DCONFIG_SUITE
|
|
CFLAGS += -DCONFIG_SUITEB
|
|
CFLAGS += -DCONFIG_PTKSA_CACHE
|
|
|
|
LIB_OBJS= \
|
|
gas.o \
|
|
hw_features_common.o \
|
|
ieee802_11_common.o \
|
|
sae.o \
|
|
ptksa_cache.o \
|
|
wpa_common.o
|
|
|
|
include ../lib.rules
|