summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Rassieur <rassb@google.com>2018-10-10 17:27:51 +0000
committerBill Rassieur <rassb@google.com>2018-10-10 17:27:51 +0000
commit4da9048b80708d978636e8afed084f621f185719 (patch)
treefb21d3853cf808701b80962e249d52fd85d0dadf
parent0fac9018f2388f25f5a5778663a14712e75a9903 (diff)
parentc9602275fc7dae822d22ba36c933d29f4556d6aa (diff)
downloadcore-4da9048b80708d978636e8afed084f621f185719.tar.gz
Change-Id: I398364a59b493057139bdfd5de6b5070978c44bb BUG: 117431430
-rw-r--r--fs_mgr/fs_mgr_fstab.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs_mgr/fs_mgr_fstab.cpp b/fs_mgr/fs_mgr_fstab.cpp
index 68cc530dd..c9fb7aa57 100644
--- a/fs_mgr/fs_mgr_fstab.cpp
+++ b/fs_mgr/fs_mgr_fstab.cpp
@@ -114,21 +114,17 @@ 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 */
+ {"ice", EM_ICE}, /* hardware-specific inline cryptographic engine */
{0, 0},
};
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},
};