AESCBCXXF3.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021-2026, Texas Instruments Incorporated
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  */
58 #ifndef ti_drivers_aescbc_AESCBCXXF3__include
59 #define ti_drivers_aescbc_AESCBCXXF3__include
60 
61 #include <stdbool.h>
62 #include <stdint.h>
63 
64 #include <ti/drivers/AESCBC.h>
67 #include <ti/devices/DeviceFamily.h>
68 
69 #if (DeviceFamily_PARENT != DeviceFamily_PARENT_CC35XX)
70  #include DeviceFamily_constructPath(driverlib/aes.h)
71 #endif
72 
73 #ifdef __cplusplus
74 extern "C" {
75 #endif
76 
84 
90 typedef struct
91 {
92  /* Common member first to allow struct to be cast to the common type */
94  volatile uint32_t iv[AES_IV_LENGTH_BYTES / 4];
95  const uint8_t *input;
96  uint8_t *output;
101 #if (DeviceFamily_PARENT == DeviceFamily_PARENT_CC27XX) || (DeviceFamily_PARENT == DeviceFamily_PARENT_CC35XX)
102  size_t inputLength;
108  int_fast16_t hsmStatus;
109  uint32_t keyAssetID;
110  /* Intentionally use implementation-independent uint32_t datatype for
111  * keyLocation to avoid user dependencies on any implementation-specific
112  * headers (e.g. mbedTLS). This data type must be large enough to hold any
113  * implementation-specific keyLocation data.
114  */
115  uint32_t keyLocation;
116  /* To indicate whether a segmented operation is in progress */
118 #endif
120 
135 __STATIC_INLINE bool AESCBC_acquireLock(AESCBC_Handle handle, uint32_t timeout)
136 {
137  return CryptoResourceXXF3_acquireLock(timeout);
138 }
149 __STATIC_INLINE void AESCBC_releaseLock(AESCBC_Handle handle)
150 {
152 }
163 __STATIC_INLINE void AESCBC_enableThreadSafety(AESCBC_Handle handle)
164 {
165  AESCBCXXF3_Object *object = (AESCBCXXF3_Object *)handle->object;
166  object->threadSafe = true;
167 }
181 __STATIC_INLINE void AESCBC_disableThreadSafety(AESCBC_Handle handle)
182 {
183  AESCBCXXF3_Object *object = (AESCBCXXF3_Object *)handle->object;
184  object->threadSafe = false;
185 }
188 #ifdef __cplusplus
189 }
190 #endif
191 
192 #endif /* ti_drivers_aesmode_AESCBCXXF3__include */
AESCBC driver header.
size_t inputLength
Definition: AESCBCXXF3.h:102
AESCBCXXF3 Object.
Definition: AESCBCXXF3.h:90
void CryptoResourceXXF3_releaseLock(void)
uint32_t keyLocation
Definition: AESCBCXXF3.h:115
bool threadSafe
Definition: AESCBCXXF3.h:100
AES Global configuration.
Definition: AESCommon.h:154
AESCommon driver implementation for the Low Power F3 family.
Shared resources to arbitrate access to the AES engine.
int_fast16_t hsmStatus
The status of the HSM Boot up process if HSMXXF3_STATUS_SUCCESS, the HSM booted properly. if HSMXXF3_STATUS_ERROR, the HSM did not boot properly.
Definition: AESCBCXXF3.h:108
#define AES_IV_LENGTH_BYTES
Definition: AESCommonXXF3.h:110
AESCommonXXF3_HWAttrs AESCBCXXF3_HWAttrs
AESCBCXXF3 Hardware Attributes.
Definition: AESCBCXXF3.h:83
const uint8_t * input
Definition: AESCBCXXF3.h:95
uint32_t keyAssetID
Definition: AESCBCXXF3.h:109
AESCBC_CallbackFxn callbackFxn
Definition: AESCBCXXF3.h:97
bool segmentedOperationInProgress
Definition: AESCBCXXF3.h:117
uint8_t * output
Definition: AESCBCXXF3.h:96
AESCommonXXF3_Object common
Definition: AESCBCXXF3.h:93
AESCommonXXF3 Object.
Definition: AESCommonXXF3.h:143
bool CryptoResourceXXF3_acquireLock(uint32_t timeout)
AESCBC_OperationType
Enum for the operation types supported by the driver.
Definition: AESCBC.h:884
AESCBC_OperationUnion * operation
Definition: AESCBCXXF3.h:98
void * object
Definition: AESCommon.h:157
Union containing a reference to a one step or segmented operation.
Definition: AESCBC.h:875
AESCBC_OperationType operationType
Definition: AESCBCXXF3.h:99
void(* AESCBC_CallbackFxn)(AESCBC_Handle handle, int_fast16_t returnValue, AESCBC_OperationUnion *operation, AESCBC_OperationType operationType)
The definition of a callback function used by the AESCBC driver when used in AESCBC_RETURN_BEHAVIOR_C...
Definition: AESCBC.h:912
AESCommonXXF3 Hardware Attributes.
Definition: AESCommonXXF3.h:121
© Copyright 1995-2026, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale