Add acipher example for asymetric cipher

Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
diff --git a/acipher/ta/include/acipher_ta.h b/acipher/ta/include/acipher_ta.h
new file mode 100644
index 0000000..6593d41
--- /dev/null
+++ b/acipher/ta/include/acipher_ta.h
@@ -0,0 +1,25 @@
+// SPDX-License-Identifier: BSD-2-Clause
+/*
+ * Copyright (c) 2018, Linaro Limited
+ */
+
+#ifndef __ACIPHER_TA_H__
+#define __ACIPHER_TA_H__
+
+/* UUID of the acipher example trusted application */
+#define TA_ACIPHER_UUID \
+	{ 0xa734eed9, 0xd6a1, 0x4244, { \
+		0xaa, 0x50, 0x7c, 0x99, 0x71, 0x9e, 0x7b, 0x7b } }
+
+/*
+ * in	params[0].value.a key size
+ */
+#define TA_ACIPHER_CMD_GEN_KEY		0
+
+/*
+ * in	params[1].memref  input
+ * out	params[2].memref  output
+ */
+#define TA_ACIPHER_CMD_ENCRYPT		1
+
+#endif /* __ACIPHER_TA_H */