Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03eccd47 authored by Daichi Ueura's avatar Daichi Ueura Committed by Hai Shalom
Browse files

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: default avatarDaichi Ueura <daichi.ueura@sony.com>
Change-Id: I2233b9cb04488f6703f8fc3e6bb3a9188ed53ddc
(cherry-picked from commit 1a431a9e7c3ace89aabc738d9a19de2bb2aa57a5
parent e0c2449d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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,