From c3bda18bda525ff8d43be0d38747350f7991e247 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 9 May 2017 17:01:04 -0700 Subject: [PATCH] Switch to libkeyutils. Bug: http://b/37991155 Test: builds+boots Change-Id: I33a3ba0d59ffd504093dc94517815c1196e95e2b --- Android.mk | 1 + Ext4Crypt.cpp | 2 +- KeyUtil.cpp | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Android.mk b/Android.mk index 69be87d..e92955f 100644 --- a/Android.mk +++ b/Android.mk @@ -46,6 +46,7 @@ common_shared_libraries := \ libsysutils \ libbinder \ libcutils \ + libkeyutils \ liblog \ libdiskconfig \ libhardware_legacy \ diff --git a/Ext4Crypt.cpp b/Ext4Crypt.cpp index cb5f6d0..dd8922c 100644 --- a/Ext4Crypt.cpp +++ b/Ext4Crypt.cpp @@ -46,8 +46,8 @@ #include #include -#include #include +#include #include #include diff --git a/KeyUtil.cpp b/KeyUtil.cpp index fe0f3cb..865cc11 100644 --- a/KeyUtil.cpp +++ b/KeyUtil.cpp @@ -20,12 +20,11 @@ #include #include -#include - #include #include #include +#include #include "KeyStorage.h" #include "Utils.h"