wifi/supplicant: Add SHA256 key management definition
This patch adds SHA256 key management definition to be able to use more robust algorithm. Test: Build with dependent CLs Bug: 68787540 Signed-off-by: Daichi Ueura <daichi.ueura@sony.com> Change-Id: I2233b9cb04488f6703f8fc3e6bb3a9188ed53ddc (cherry-picked from commit 1a431a9e7c3ace89aabc738d9a19de2bb2aa57a5
This commit is contained in:
parent
e0c2449d98
commit
03eccd4799
1 changed files with 6 additions and 0 deletions
|
@ -28,6 +28,12 @@ import @1.1::ISupplicantStaNetwork;
|
|||
interface ISupplicantStaNetwork extends @1.1::ISupplicantStaNetwork {
|
||||
/** Possble mask of values for KeyMgmt param. */
|
||||
enum KeyMgmtMask : @1.0::ISupplicantStaNetwork.KeyMgmtMask {
|
||||
/** WPA using EAP authentication with stronger SHA256-based algorithms */
|
||||
WPA_EAP_SHA256 = 1 << 7,
|
||||
|
||||
/** WPA pre-shared key with stronger SHA256-based algorithms */
|
||||
WPA_PSK_SHA256 = 1 << 8,
|
||||
|
||||
/** WPA3-Personal SAE Key management */
|
||||
SAE = 1 << 10,
|
||||
|
||||
|
|
Loading…
Reference in a new issue