MCUX CLNS
MCUX Crypto Library Normal Secure
mcuxClAead_Types.h
Go to the documentation of this file.
1 /*--------------------------------------------------------------------------*/
2 /* Copyright 2020-2021,2023 NXP */
3 /* */
4 /* NXP Confidential. This software is owned or controlled by NXP and may */
5 /* only be used strictly in accordance with the applicable license terms. */
6 /* By expressly accepting such terms or by downloading, installing, */
7 /* activating and/or otherwise using the software, you are agreeing that */
8 /* you have read, and that you agree to comply with and are bound by, such */
9 /* license terms. If you do not agree to be bound by the applicable license */
10 /* terms, then you may not retain, install, activate or otherwise use the */
11 /* software. */
12 /*--------------------------------------------------------------------------*/
13 
18 #ifndef MCUXCLAEAD_TYPES_H_
19 #define MCUXCLAEAD_TYPES_H_
20 
21 #include <mcuxClConfig.h> // Exported features flags header
22 
23 #include <stdint.h>
24 #include <stdbool.h>
25 #include <stddef.h>
26 
27 #include <mcuxClSession.h>
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 
47 struct mcuxClAead_ModeDescriptor;
48 
55 typedef struct mcuxClAead_ModeDescriptor mcuxClAead_ModeDescriptor_t;
56 
57 
64 
71 struct mcuxClAead_TestDescriptor;
72 
79 typedef struct mcuxClAead_TestDescriptor mcuxClAead_TestDescriptor_t;
80 
87 
94 struct mcuxClAead_Context;
95 
102 typedef struct mcuxClAead_Context mcuxClAead_Context_t;
103 
110 typedef uint32_t mcuxClAead_Status_t;
111 
114 #ifdef __cplusplus
115 } /* extern "C" */
116 #endif
117 
118 #endif /* MCUXCLAEAD_TYPES_H_ */
struct mcuxClAead_TestDescriptor mcuxClAead_TestDescriptor_t
Aead selftest mode/algorithm descriptor type.
Definition: mcuxClAead_Types.h:79
Top-level include file for the mcuxClSession component.
const mcuxClAead_ModeDescriptor_t *const mcuxClAead_Mode_t
AEAD mode/algorithm type.
Definition: mcuxClAead_Types.h:63
struct mcuxClAead_Context mcuxClAead_Context_t
AEAD context type.
Definition: mcuxClAead_Types.h:102
struct mcuxClAead_ModeDescriptor mcuxClAead_ModeDescriptor_t
AEAD mode/algorithm descriptor type.
Definition: mcuxClAead_Types.h:55
const mcuxClAead_TestDescriptor_t *const mcuxClAead_Test_t
Aead selftest mode/algorithm type.
Definition: mcuxClAead_Types.h:86
uint32_t mcuxClAead_Status_t
AEAD status code.
Definition: mcuxClAead_Types.h:110