1 // SPDX-License-Identifier: BSD-2-Clause 2 /* 3 * Copyright (c) 2018, Linaro Limited 4 */ 5 6 #ifndef __ACIPHER_TA_H__ 7 #define __ACIPHER_TA_H__ 8 9 /* UUID of the acipher example trusted application */ 10 #define TA_ACIPHER_UUID \ 11 { 0xa734eed9, 0xd6a1, 0x4244, { \ 12 0xaa, 0x50, 0x7c, 0x99, 0x71, 0x9e, 0x7b, 0x7b } } 13 14 /* 15 * in params[0].value.a key size 16 */ 17 #define TA_ACIPHER_CMD_GEN_KEY 0 18 19 /* 20 * in params[1].memref input 21 * out params[2].memref output 22 */ 23 #define TA_ACIPHER_CMD_ENCRYPT 1 24 25 #endif /* __ACIPHER_TA_H */ 26