From a2336b74f9c2b9881b09b193c3689df256bf82b7 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 1 Jun 2018 17:41:59 +0300 Subject: [PATCH] EAP-TLS: Update key derivation label per draft-ietf-emu-eap-tls13-00 The label strings used for deriving Key_Material with TLS v1.3 were changed, so update the implementation to match the new values. Signed-off-by: Jouni Malinen --- components/wpa_supplicant/src/eap_peer/eap_tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/src/eap_peer/eap_tls.c b/components/wpa_supplicant/src/eap_peer/eap_tls.c index d657beab03..a4da54c606 100644 --- a/components/wpa_supplicant/src/eap_peer/eap_tls.c +++ b/components/wpa_supplicant/src/eap_peer/eap_tls.c @@ -122,7 +122,7 @@ static void eap_tls_success(struct eap_sm *sm, struct eap_tls_data *data, } if (data->ssl.tls_v13) { - label = "client EAP encryption KM"; + label = "EXPORTER_EAP_TLS_Key_Material"; /* A possible NewSessionTicket may be received before * EAP-Success, so need to allow it to be received. */