Run clang-format over ext4crypt related code

The formatting here is inconsistent with Android house style; use
clang-format to bring it back into line.

Change-Id: Id1fe6ff54e9b668ca88c3fc021ae0a5bdd1327eb
diff --git a/KeyStorage.h b/KeyStorage.h
index 6daf1d2..10ed789 100644
--- a/KeyStorage.h
+++ b/KeyStorage.h
@@ -27,8 +27,8 @@
 // If "secret" is nonempty, it is appended to the application-specific
 // binary needed to unlock.
 class KeyAuthentication {
-public:
-    KeyAuthentication(std::string t, std::string s): token {t}, secret {s} {};
+  public:
+    KeyAuthentication(std::string t, std::string s) : token{t}, secret{s} {};
     const std::string token;
     const std::string secret;
 };
@@ -39,13 +39,13 @@
 // in such a way that it can only be retrieved via Keymaster and
 // can be securely deleted.
 // It's safe to move/rename the directory after creation.
-bool storeKey(const std::string &dir, const KeyAuthentication &auth, const std::string &key);
+bool storeKey(const std::string& dir, const KeyAuthentication& auth, const std::string& key);
 
 // Retrieve the key from the named directory.
-bool retrieveKey(const std::string &dir, const KeyAuthentication &auth, std::string *key);
+bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, std::string* key);
 
 // Securely destroy the key stored in the named directory and delete the directory.
-bool destroyKey(const std::string &dir);
+bool destroyKey(const std::string& dir);
 
 }  // namespace vold
 }  // namespace android