AESCMACCC26X4_s.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022 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_aescmac_AESCMACCC26X4_s__include
34 #define ti_drivers_aescmac_AESCMACCC26X4_s__include
35 
36 #include <stdint.h>
37 
39 #include <ti/drivers/AESCMAC.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_PSA_API)
47  #include "ti_drivers_config.h" /* Sysconfig generated header */
48 #endif
49 
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53 
54 /*
55  * AES CMAC secure message types
56  *
57  * Non-secure clients must register their callback after opening or
58  * constructing a driver instance with blocking or callback return behavior.
59  */
60 #define AESCMAC_S_MSG_TYPE_CONSTRUCT (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 0U)))
61 #define AESCMAC_S_MSG_TYPE_OPEN (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 1U)))
62 #define AESCMAC_S_MSG_TYPE_REGISTER_CALLBACK \
63  (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 2U)))
64 #define AESCMAC_S_MSG_TYPE_CLOSE (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 3U)))
65 #define AESCMAC_S_MSG_TYPE_ONE_STEP_SIGN \
66  (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 4U)))
67 #define AESCMAC_S_MSG_TYPE_ONE_STEP_VERIFY \
68  (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 5U)))
69 #define AESCMAC_S_MSG_TYPE_SETUP_SIGN (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 6U)))
70 #define AESCMAC_S_MSG_TYPE_SETUP_VERIFY \
71  (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 7U)))
72 #define AESCMAC_S_MSG_TYPE_ADD_DATA (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 8U)))
73 #define AESCMAC_S_MSG_TYPE_FINALIZE (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 9U)))
74 #define AESCMAC_S_MSG_TYPE_CANCEL_OPERATION \
75  (CRYPTO_S_MSG_TYPE_INDEX_AESCMAC | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + 10U)))
76 
77 /*
78  * Config pool size determines how many dynamic driver instances can be created
79  * by the non-secure client using AESCMAC_construct().
80  */
81 #ifndef CONFIG_AESCMAC_S_CONFIG_POOL_SIZE
82  #define CONFIG_AESCMAC_S_CONFIG_POOL_SIZE 1
83 #endif
84 
85 #define AESCMAC_SECURE_CALLBACK_COUNT (CONFIG_TI_DRIVERS_AESCMAC_COUNT + CONFIG_AESCMAC_S_CONFIG_POOL_SIZE)
86 
87 /*
88  * ========= AES CMAC Secure Callback struct =========
89  */
90 typedef struct
91 {
93  /* AES CMAC callback fxn parameters */
95  int_fast16_t returnValue;
99 
100 /*
101  * ========= AES CMAC Secure Message Structs =========
102  * These secure message structs correspond to the secure message types defined
103  * above. Together, they are used by non-secure client to make PSA calls to the
104  * AES CMAC secure service. There is a single input vector for the PSA call
105  * which is a pointer to secure message struct. If the underlying function
106  * has a return value, there is a single output vector which is a pointer to
107  * storage for the return value.
108  */
109 typedef struct
110 {
114 
115 typedef struct
116 {
117  uint_least8_t index;
120 
121 typedef struct
122 {
126 
127 typedef struct
128 {
131 
132 typedef struct
133 {
138 
139 typedef struct
140 {
142  const CryptoKey *key;
144 
145 typedef struct
146 {
150 
152 
153 typedef struct
154 {
157 
168 psa_status_t AESCMAC_s_handlePsaMsg(psa_msg_t *msg);
169 
175 void AESCMAC_s_init(void);
176 
177 #ifdef __cplusplus
178 }
179 #endif
180 
181 #endif /* ti_drivers_aescmac_AESCMACCC26X4_s__include */
AESCMAC_s_AddDataMsg AESCMAC_s_FinalizeMsg
Definition: AESCMACCC26X4_s.h:151
Definition: AESCMACCC26X4_s.h:90
void AESCMAC_s_init(void)
Initializes the AES CMAC secure driver.
psa_status_t AESCMAC_s_handlePsaMsg(psa_msg_t *msg)
Handles PSA messages for AES CMAC secure driver.
Definition: SecureCallback.h:51
CryptoKey * key
Definition: AESCMACCC26X4_s.h:136
Definition: AESCMACCC26X4_s.h:145
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:129
Definition: AESCMACCC26X4_s.h:115
AESCMAC_s_SecureCallback * callback
Definition: AESCMACCC26X4_s.h:124
AES Global configuration.
Definition: AESCommon.h:154
AESCMAC_OperationType operationType
Definition: AESCMACCC26X4_s.h:97
SecureCallback_Object object
Definition: AESCMACCC26X4_s.h:92
AESCMAC_Config * config
Definition: AESCMACCC26X4_s.h:111
CryptoKey datastructure.
Definition: CryptoKey.h:192
AESCMAC_OperationType
Enum for the operation types supported by the driver.
Definition: AESCMAC.h:715
Definition: AESCMACCC26X4_s.h:153
Definition: AESCMACCC26X4_s.h:139
AESCMAC_Operation * operation
Definition: AESCMACCC26X4_s.h:135
const AESCMAC_Params * params
Definition: AESCMACCC26X4_s.h:118
Secure Crypto Service.
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:141
AESCMAC_Operation * operation
Definition: AESCMACCC26X4_s.h:96
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:155
uint_least8_t index
Definition: AESCMACCC26X4_s.h:117
int_fast16_t returnValue
Definition: AESCMACCC26X4_s.h:95
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:123
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:94
const AESCMAC_Params * params
Definition: AESCMACCC26X4_s.h:112
AESCMAC Parameters.
Definition: AESCMAC.h:752
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:147
AESCMAC (CMAC and CBC-MAC) driver header.
AESCMAC_Handle handle
Definition: AESCMACCC26X4_s.h:134
AESCMAC_Operation * operation
Definition: AESCMACCC26X4_s.h:148
const CryptoKey * key
Definition: AESCMACCC26X4_s.h:142
Definition: AESCMACCC26X4_s.h:132
Struct containing the parameters required for signing or verifying a message.
Definition: AESCMAC.h:661
Definition: AESCMACCC26X4_s.h:121
Definition: AESCMACCC26X4_s.h:127
Definition: AESCMACCC26X4_s.h:109
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale