AESCBCLPF3.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021-2023, 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  */
57 #ifndef ti_drivers_aescbc_AESCBCLPF3__include
58 #define ti_drivers_aescbc_AESCBCLPF3__include
59 
60 #include <stdbool.h>
61 #include <stdint.h>
62 
63 #include <ti/drivers/AESCBC.h>
66 
67 #include <ti/devices/DeviceFamily.h>
68 #include DeviceFamily_constructPath(driverlib/aes.h)
69 
70 #ifdef __cplusplus
71 extern "C" {
72 #endif
73 
81 
87 typedef struct
88 {
89  /* Common member first to allow struct to be cast to the common type */
91  volatile uint32_t iv[AES_IV_LENGTH_BYTES / 4];
95  bool threadSafe;
97 
112 __STATIC_INLINE bool AESCBC_acquireLock(AESCBC_Handle handle, uint32_t timeout)
113 {
114  return CryptoResourceLPF3_acquireLock(timeout);
115 }
126 __STATIC_INLINE void AESCBC_releaseLock(AESCBC_Handle handle)
127 {
129 }
140 __STATIC_INLINE void AESCBC_enableThreadSafety(AESCBC_Handle handle)
141 {
142  AESCBCLPF3_Object *object = handle->object;
143  object->threadSafe = true;
144 }
158 __STATIC_INLINE void AESCBC_disableThreadSafety(AESCBC_Handle handle)
159 {
160  AESCBCLPF3_Object *object = handle->object;
161  object->threadSafe = false;
162 }
165 #ifdef __cplusplus
166 }
167 #endif
168 
169 #endif /* ti_drivers_aesmode_AESCBCLPF3__include */
AESCBC_OperationUnion * operation
Definition: AESCBCLPF3.h:93
AESCBC driver header.
AESCommonLPF3_HWAttrs AESCBCLPF3_HWAttrs
AESCBCLPF3 Hardware Attributes.
Definition: AESCBCLPF3.h:80
bool CryptoResourceLPF3_acquireLock(uint32_t timeout)
bool threadSafe
Definition: AESCBCLPF3.h:95
AES Global configuration.
Definition: AESCommon.h:154
AESCBC_CallbackFxn callbackFxn
Definition: AESCBCLPF3.h:92
AESCBC_OperationType operationType
Definition: AESCBCLPF3.h:94
AESCommonLPF3 Hardware Attributes.
Definition: AESCommonLPF3.h:80
void CryptoResourceLPF3_releaseLock(void)
AESCommon driver implementation for the Low Power F3 family.
Shared resources to arbitrate access to the AES engine.
AESCBC_OperationType
Enum for the operation types supported by the driver.
Definition: AESCBC.h:815
void * object
Definition: AESCommon.h:157
Union containing a reference to a one step or segmented operation.
Definition: AESCBC.h:806
AESCommonLPF3_Object common
Definition: AESCBCLPF3.h:90
AESCBCLPF3 Object.
Definition: AESCBCLPF3.h:87
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:843
AESCommonLPF3 Object.
Definition: AESCommonLPF3.h:102
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale