wlantest: Fix the cipher name in a BIP-GMAC-256 test vector

Signed-off-by: Henry Ptasinski <henry@e78com.com>
Signed-off-by: Andrew Pope <andrew.pope@morsemicro.com>
Signed-off-by: David Goodall <dave@morsemicro.com>
This commit is contained in:
Henry Ptasinski 2024-01-10 17:20:55 -08:00 committed by Jouni Malinen
parent f580691897
commit 3fad445496

View file

@ -906,7 +906,7 @@ static int test_vector_bip_gmac_256(void)
wpa_hexdump(MSG_INFO, "Protected MPDU (without FCS)", prot, prot_len); wpa_hexdump(MSG_INFO, "Protected MPDU (without FCS)", prot, prot_len);
if (prot_len != sizeof(res) || os_memcmp(res, prot, prot_len) != 0) { if (prot_len != sizeof(res) || os_memcmp(res, prot, prot_len) != 0) {
wpa_printf(MSG_ERROR, "BIP-GMAC-128 test vector mismatch"); wpa_printf(MSG_ERROR, "BIP-GMAC-256 test vector mismatch");
err++; err++;
} }
os_free(prot); os_free(prot);