AESECBCC26X4_s.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022-2023, Texas Instruments Incorporated - https://www.ti.com
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef ti_drivers_aesecb_AESECBCC26X4_s__include
34 #define ti_drivers_aesecb_AESECBCC26X4_s__include
35 
36 #include <stdint.h>
37 
39 #include <ti/drivers/AESECB.h>
40 
42 
43 #include <third_party/tfm/interface/include/psa/error.h>
44 #include <third_party/tfm/interface/include/psa/service.h>
45 
46 #if defined(TFM_BUILD)
47  #include "ti_drivers_config.h" /* Sysconfig generated header */
48 #endif
49 
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53 
54 /*
55  * AES ECB secure message types
56  */
57 #define AESECB_S_MSG_TYPE_CONSTRUCT AESECB_S_MSG_TYPE(0U)
58 #define AESECB_S_MSG_TYPE_OPEN AESECB_S_MSG_TYPE(1U)
59 #define AESECB_S_MSG_TYPE_REGISTER_CALLBACK AESECB_S_MSG_TYPE(2U)
60 #define AESECB_S_MSG_TYPE_CLOSE AESECB_S_MSG_TYPE(3U)
61 #define AESECB_S_MSG_TYPE_ONE_STEP_ENCRYPT AESECB_S_MSG_TYPE(4U)
62 #define AESECB_S_MSG_TYPE_ONE_STEP_DECRYPT AESECB_S_MSG_TYPE(5U)
63 #define AESECB_S_MSG_TYPE_SETUP_ENCRYPT AESECB_S_MSG_TYPE(6U)
64 #define AESECB_S_MSG_TYPE_SETUP_DECRYPT AESECB_S_MSG_TYPE(7U)
65 #define AESECB_S_MSG_TYPE_ADD_DATA AESECB_S_MSG_TYPE(8U)
66 #define AESECB_S_MSG_TYPE_FINALIZE AESECB_S_MSG_TYPE(9U)
67 #define AESECB_S_MSG_TYPE_CANCEL_OPERATION AESECB_S_MSG_TYPE(10U)
68 
69 /*
70  * Config pool size determines how many dynamic driver instances can be created
71  * by the non-secure client using AESECB_construct().
72  */
73 #ifndef CONFIG_AESECB_S_CONFIG_POOL_SIZE
74  #define CONFIG_AESECB_S_CONFIG_POOL_SIZE 1
75 #endif
76 
77 #define AESECB_SECURE_CALLBACK_COUNT (CONFIG_TI_DRIVERS_AESECB_COUNT + CONFIG_AESECB_S_CONFIG_POOL_SIZE)
78 
79 /*
80  * ========= AES ECB Secure Callback struct =========
81  * Non-secure clients must register their callback after opening or
82  * constructing a driver instance with blocking or callback return behavior.
83  */
84 typedef struct
85 {
87  /* AES ECB callback fxn parameters */
89  int_fast16_t returnValue;
93 
94 /*
95  * ========= AES ECB Secure Message Structs =========
96  * These secure message structs correspond to the secure message types defined
97  * above. Together, they are used by non-secure client to make PSA calls to the
98  * AES ECB secure service. There is a single input vector for the PSA call
99  * which is a pointer to secure message struct. If the underlying function
100  * has a return value, there is a single output vector which is a pointer to
101  * storage for the return value.
102  */
103 typedef struct
104 {
108 
109 typedef struct
110 {
111  uint_least8_t index;
114 
115 typedef struct
116 {
120 
121 typedef struct
122 {
125 
126 typedef struct
127 {
131 
133 
134 typedef struct
135 {
137  const CryptoKey *key;
139 
141 
143 
144 typedef struct
145 {
148 
159 psa_status_t AESECB_s_handlePsaMsg(psa_msg_t *msg);
160 
166 void AESECB_s_init(void);
167 
168 #ifdef __cplusplus
169 }
170 #endif
171 
172 #endif /* ti_drivers_aesecb_AESECBCC26X4_s__include */
AESECB_Operation * operation
Definition: AESECBCC26X4_s.h:90
AESECB_s_OperationMsg AESECB_s_OneStepOperationMsg
Definition: AESECBCC26X4_s.h:132
Definition: SecureCallback.h:51
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:117
AES Global configuration.
Definition: AESCommon.h:154
AESECB_Config * config
Definition: AESECBCC26X4_s.h:105
CryptoKey datastructure.
Definition: CryptoKey.h:196
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:128
Definition: AESECBCC26X4_s.h:126
const CryptoKey * key
Definition: AESECBCC26X4_s.h:137
ECB Parameters.
Definition: AESECB.h:665
Secure Crypto Service.
AESECB_s_SecureCallback * callback
Definition: AESECBCC26X4_s.h:118
Definition: AESECBCC26X4_s.h:121
Definition: AESECBCC26X4_s.h:84
int_fast16_t returnValue
Definition: AESECBCC26X4_s.h:89
Struct containing the parameters required for encrypting/decrypting and a message.
Definition: AESECB.h:581
AESECB driver header.
Definition: AESECBCC26X4_s.h:103
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:146
const AESECB_Params * params
Definition: AESECBCC26X4_s.h:106
psa_status_t AESECB_s_handlePsaMsg(psa_msg_t *msg)
Handles PSA messages for AES ECB secure driver.
SecureCallback_Object object
Definition: AESECBCC26X4_s.h:86
void AESECB_s_init(void)
Initializes the AES ECB secure driver.
const AESECB_Params * params
Definition: AESECBCC26X4_s.h:112
Definition: AESECBCC26X4_s.h:115
AESECB_OperationType operationType
Definition: AESECBCC26X4_s.h:91
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:123
Definition: AESECBCC26X4_s.h:144
AESECB_s_OperationMsg AESECB_s_FinalizeMsg
Definition: AESECBCC26X4_s.h:142
AESECB_OperationType
Enum for the operation types supported by the driver.
Definition: AESECB.h:627
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:88
AESECB_Operation * operation
Definition: AESECBCC26X4_s.h:129
uint_least8_t index
Definition: AESECBCC26X4_s.h:111
Definition: AESECBCC26X4_s.h:134
AESECB_Handle handle
Definition: AESECBCC26X4_s.h:136
Definition: AESECBCC26X4_s.h:109
AESECB_s_OperationMsg AESECB_s_AddDataMsg
Definition: AESECBCC26X4_s.h:140
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale