summaryrefslogtreecommitdiff
path: root/security/pfe/pfk_ice.h
diff options
context:
space:
mode:
authorAndrey Markovytch <andreym@codeaurora.org>2015-06-08 14:04:45 +0300
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 21:24:06 -0700
commit584531e72e48d4ef1403eaac82fa85be2135f5c7 (patch)
tree295e22e5ef3b2b4588aafce854c75c96b53fae5f /security/pfe/pfk_ice.h
parent5eebf863430b86333cb3e0c179cc5d7b1f0deb0f (diff)
PFK: new module to work with ecryptfs
PFK is a new module that accompanies eCryptfs and enables it to utilize ICE hw encryption engine. Module is responsible for storing encryption/decryption keys inside eCryptfs inodes for each file and loading them to ICE Change-Id: I6e755ca657164919147fe0d9482477e14a4be5eb Signed-off-by: Andrey Markovytch <andreym@codeaurora.org> [gbroner@codeaurora.org: fix merge conflicts, adapted LSM hooks and added missing qseecom headers to fix compilation] Signed-off-by: Gilad Broner <gbroner@codeaurora.org>
Diffstat (limited to 'security/pfe/pfk_ice.h')
-rw-r--r--security/pfe/pfk_ice.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/security/pfe/pfk_ice.h b/security/pfe/pfk_ice.h
new file mode 100644
index 000000000000..b1a5c4c807a3
--- /dev/null
+++ b/security/pfe/pfk_ice.h
@@ -0,0 +1,33 @@
+/* Copyright (c) 2015, The Linux Foundation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef PFK_ICE_H_
+#define PFK_ICE_H_
+
+/*
+ * PFK ICE
+ *
+ * ICE keys configuration through scm calls.
+ *
+ */
+
+#include <linux/types.h>
+
+
+int pfk_ice_init(void);
+int pfk_ice_deinit(void);
+
+int qti_pfk_ice_set_key(uint32_t index, uint8_t *key);
+int qti_pfk_ice_invalidate_key(uint32_t index);
+
+
+#endif /* PFK_ICE_H_ */