From: Alex Gavin Date: Sun, 13 Apr 2025 18:24:54 +0000 (-0700) Subject: iw: scan: Decode additional WPA3 AKM suite types X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f04e5c51a3e95afb60d4185b83dfa2c5d2dc6d10;p=thirdparty%2Fiw.git iw: scan: Decode additional WPA3 AKM suite types These values are taken from the publicly-available WPA3 specification available on the WFA website. Specific string choice attempts to match previous printouts, rather than matching the specification verbatim. Signed-off-by: Alex Gavin Link: https://patch.msgid.link/20250413182515.10755-2-alex.gavin@candelatech.com Signed-off-by: Johannes Berg --- diff --git a/scan.c b/scan.c index a366184..b3ddb66 100644 --- a/scan.c +++ b/scan.c @@ -887,6 +887,18 @@ static void print_auth(const uint8_t *data) case 18: printf("OWE"); break; + case 19: + printf("FT/PSK/SHA-384"); + break; + case 20: + printf("PSK/SHA-384"); + break; + case 24: + printf("SAE-EXT-KEY"); + break; + case 25: + printf("FT/SAE-EXT-KEY"); + break; default: printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);