1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2014, STMicroelectronics International N.V. 4 * All rights reserved. 5 */ 6 7 #ifndef TA_RPC_TEST_H 8 #define TA_RPC_TEST_H 9 10 /* This UUID is generated with the ITU-T UUID generator at 11 http://www.itu.int/ITU-T/asn1/uuid.html */ 12 #define TA_RPC_TEST_UUID { 0xd17f73a0, 0x36ef, 0x11e1, \ 13 { 0x98, 0x4a, 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } } 14 15 #define TA_RPC_CMD_CRYPT_SHA224 1 16 #define TA_RPC_CMD_CRYPT_SHA256 2 17 #define TA_RPC_CMD_CRYPT_AES256ECB_ENC 3 18 #define TA_RPC_CMD_CRYPT_AES256ECB_DEC 4 19 #define TA_RPC_CMD_OPEN 5 20 #define TA_RPC_CMD_CRYPT_PRIVMEM_SHA224 6 21 #define TA_RPC_CMD_CRYPT_PRIVMEM_SHA256 7 22 #define TA_RPC_CMD_CRYPT_PRIVMEM_AES256ECB_ENC 8 23 #define TA_RPC_CMD_CRYPT_PRIVMEM_AES256ECB_DEC 9 24 25 #endif 26