forked from espressif/esp-idf
EAP-TLS: Replace the Commitment Message term with RFC 9190 language
While the drafts for RFC 9190 used a separate Commitment Message term, that term was removed from the published RFC. Update the debug prints to match that final language. Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
committed by
Sarvesh Bodakhe
parent
9cb8c0545f
commit
98183fe062
@@ -245,7 +245,8 @@ static struct wpabuf * eap_tls_process(struct eap_sm *sm, void *priv,
|
|||||||
/* RFC 9190 Section 2.5 */
|
/* RFC 9190 Section 2.5 */
|
||||||
if (res == 2 && data->ssl.tls_v13 && wpabuf_len(resp) == 1 &&
|
if (res == 2 && data->ssl.tls_v13 && wpabuf_len(resp) == 1 &&
|
||||||
*wpabuf_head_u8(resp) == 0) {
|
*wpabuf_head_u8(resp) == 0) {
|
||||||
wpa_printf(MSG_DEBUG, "EAP-TLS: ACKing Commitment Message");
|
wpa_printf(MSG_DEBUG,
|
||||||
|
"EAP-TLS: ACKing protected success indication (appl data 0x00)");
|
||||||
eap_peer_tls_reset_output(&data->ssl);
|
eap_peer_tls_reset_output(&data->ssl);
|
||||||
res = 1;
|
res = 1;
|
||||||
}
|
}
|
||||||
|
@@ -1427,7 +1427,7 @@ start:
|
|||||||
if (data->ssl.tls_v13 && wpabuf_len(in_decrypted) == 1 &&
|
if (data->ssl.tls_v13 && wpabuf_len(in_decrypted) == 1 &&
|
||||||
*wpabuf_head_u8(in_decrypted) == 0) {
|
*wpabuf_head_u8(in_decrypted) == 0) {
|
||||||
wpa_printf(MSG_DEBUG,
|
wpa_printf(MSG_DEBUG,
|
||||||
"EAP-TTLS: ACKing EAP-TLS Commitment Message");
|
"EAP-TLS: ACKing protected success indication (appl data 0x00)");
|
||||||
eap_peer_tls_reset_output(&data->ssl);
|
eap_peer_tls_reset_output(&data->ssl);
|
||||||
wpabuf_free(in_decrypted);
|
wpabuf_free(in_decrypted);
|
||||||
return 1;
|
return 1;
|
||||||
|
Reference in New Issue
Block a user