IHostapd: Add support for OWE security encryption type.

This commit is to add the EncryptionType:WPA3_OWE  to allow setup of OWE Soft-AP.

Bug: 217669241
Test: VTS tests
Change-Id: Ib862ba014eacaf4429bd3e44def3f7394643f98e
This commit is contained in:
Ahmed ElArabawy 2022-02-04 15:29:00 -08:00
parent ff90be0efa
commit f815455af5
2 changed files with 4 additions and 2 deletions

View file

@ -39,5 +39,6 @@ enum EncryptionType {
WPA2 = 2,
WPA3_SAE_TRANSITION = 3,
WPA3_SAE = 4,
OWE_TRANSITION = 5,
WPA3_OWE_TRANSITION = 5,
WPA3_OWE = 6,
}

View file

@ -29,5 +29,6 @@ enum EncryptionType {
WPA2,
WPA3_SAE_TRANSITION,
WPA3_SAE,
OWE_TRANSITION,
WPA3_OWE_TRANSITION,
WPA3_OWE,
}