From 03eccd4799e09cfba466511e5e4c0dcd5eaf231a Mon Sep 17 00:00:00 2001 From: Daichi Ueura Date: Tue, 20 Feb 2018 18:35:58 +0900 Subject: [PATCH] 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 Change-Id: I2233b9cb04488f6703f8fc3e6bb3a9188ed53ddc (cherry-picked from commit 1a431a9e7c3ace89aabc738d9a19de2bb2aa57a5 --- wifi/supplicant/1.2/ISupplicantStaNetwork.hal | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wifi/supplicant/1.2/ISupplicantStaNetwork.hal b/wifi/supplicant/1.2/ISupplicantStaNetwork.hal index 6c356a4096..7c3da6f4f9 100644 --- a/wifi/supplicant/1.2/ISupplicantStaNetwork.hal +++ b/wifi/supplicant/1.2/ISupplicantStaNetwork.hal @@ -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,