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

Commit 7dbf1a23 authored by Luca Stefani's avatar Luca Stefani
Browse files

Merge tag 'android-9.0.0_r10' into lineage-16.0-android-9.0.0_r10

Android 9.0.0 release 10

* tag 'android-9.0.0_r10':
  Revert "Support Speck encryption."

Change-Id: Ia804a35ca8f40456a82d525f9e6b833ebb1e3ad1
parents 8a9224cb c9602275
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -114,12 +114,9 @@ static struct flag_list fs_mgr_flags[] = {
#define EM_ICE          2
#define EM_AES_256_CTS  3
#define EM_AES_256_HEH  4
#define EM_SPECK_128_256_XTS 5
#define EM_SPECK_128_256_CTS 6

static const struct flag_list file_contents_encryption_modes[] = {
    {"aes-256-xts", EM_AES_256_XTS},
    {"speck128/256-xts", EM_SPECK_128_256_XTS},
    {"software", EM_AES_256_XTS}, /* alias for backwards compatibility */
    {"ice", EM_ICE}, /* hardware-specific inline cryptographic engine */
    {0, 0},
@@ -128,7 +125,6 @@ static const struct flag_list file_contents_encryption_modes[] = {
static const struct flag_list file_names_encryption_modes[] = {
    {"aes-256-cts", EM_AES_256_CTS},
    {"aes-256-heh", EM_AES_256_HEH},
    {"speck128/256-cts", EM_SPECK_128_256_CTS},
    {0, 0},
};