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

Commit 7b540655 authored by Venkatarama Avadhani's avatar Venkatarama Avadhani
Browse files

CAS: Update ScramblingMode enum order

Move the new enum to the end, so the values of the older enums do not
change.

Bug: 230377377, 227673974, 233862815
Test: None
Change-Id: I239e2b887af5b4d668d0f8eaacc77f18049c697a
parent 558762c1
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -44,9 +44,9 @@ enum ScramblingMode {
  DVB_IDSA = 7,
  MULTI2 = 8,
  AES128 = 9,
  AES_CBC = 10,
  AES_ECB = 11,
  AES_SCTE52 = 12,
  TDES_ECB = 13,
  TDES_SCTE52 = 14,
  AES_ECB = 10,
  AES_SCTE52 = 11,
  TDES_ECB = 12,
  TDES_SCTE52 = 13,
  AES_CBC = 14,
}
+5 −5
Original line number Diff line number Diff line
@@ -69,11 +69,6 @@ enum ScramblingMode {
     */
    AES128,

    /**
     * Advanced Encryption System (AES) Cipher Block Chaining (CBC) mode.
     */
    AES_CBC,

    /**
     * Advanced Encryption System (AES) Electronic Code Book (ECB) mode.
     */
@@ -95,4 +90,9 @@ enum ScramblingMode {
     * Engineers (SCTE) 52 mode.
     */
    TDES_SCTE52,

    /**
     * Advanced Encryption System (AES) Cipher Block Chaining (CBC) mode.
     */
    AES_CBC,
}