Revert "Support Speck encryption."

am: 270e90f033

Change-Id: I3154561f4defaa3369c1005d9051bdf10595c6fa
This commit is contained in:
Greg Kaiser 2018-08-07 11:42:34 -07:00 committed by android-build-merger
commit 55e6c62224

View file

@ -117,21 +117,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},
};