wpa_supplicant : Fix scan results for GCMP and GCMP-256 cipher.

Add support for recognising GCMP and GCMP-256 ciphers if used by AP.
Update the scan example to show the correct cipher.
This commit is contained in:
jgujarathi
2023-04-26 14:26:49 +05:30
parent 00c0bf683f
commit e803554654
2 changed files with 27 additions and 0 deletions

View File

@@ -110,6 +110,12 @@ wifi_cipher_type_t cipher_type_map_supp_to_public(unsigned wpa_cipher)
case WPA_CIPHER_SMS4:
return WIFI_CIPHER_TYPE_SMS4;
case WPA_CIPHER_GCMP:
return WIFI_CIPHER_TYPE_GCMP;
case WPA_CIPHER_GCMP_256:
return WIFI_CIPHER_TYPE_GCMP256;
default:
return WIFI_CIPHER_TYPE_UNKNOWN;
}