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

Commit b2da76d6 authored by Jimmy Chen's avatar Jimmy Chen
Browse files

wifi: correct WPA cipher GCMP-128 bit

Bug: 185202617
Test: atest VtsHalWifiSupplicantV1_4TargetTest
Change-Id: I78fb68d0a4c046759592ceed7089a58c5ea69064
parent 722ee0ae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ interface ISupplicantStaNetwork extends @1.3::ISupplicantStaNetwork {
        /**
         * GCMP-128 Pairwise Cipher
         */
        GCMP_128 = 1 << 9,
        GCMP_128 = 1 << 6,
    };

    /**
@@ -51,7 +51,7 @@ interface ISupplicantStaNetwork extends @1.3::ISupplicantStaNetwork {
        /**
         * GCMP-128 Group Cipher
         */
        GCMP_128 = 1 << 9,
        GCMP_128 = 1 << 6,
    };

    /**