Disable super encryption for now
am: 484779559c

Change-Id: If8fc5173d028754acba9f7b69ea8454b5d3b2e4c
diff --git a/keystore/blob.cpp b/keystore/blob.cpp
index e173b68..8c8267b 100644
--- a/keystore/blob.cpp
+++ b/keystore/blob.cpp
@@ -83,8 +83,11 @@
     mBlob.flags = setFlag(mBlob.flags, encrypted, KEYSTORE_FLAG_ENCRYPTED);
 }
 
-void Blob::setSuperEncrypted(bool superEncrypted) {
-    mBlob.flags = setFlag(mBlob.flags, superEncrypted, KEYSTORE_FLAG_SUPER_ENCRYPTED);
+void Blob::setSuperEncrypted(__attribute__((unused)) bool superEncrypted) {
+    // Do not enable super encryption yet, as it's clashing with synthetic password flow
+    // TODO: re-enables this once keystore knows about synthetic password keys
+
+    //mBlob.flags = setFlag(mBlob.flags, superEncrypted, KEYSTORE_FLAG_SUPER_ENCRYPTED);
 }
 
 void Blob::setFallback(bool fallback) {