MCUX CLNS
MCUX Crypto Library Normal Secure
mcuxClCipher_Types.h
Go to the documentation of this file.
1 /*--------------------------------------------------------------------------*/
2 /* Copyright 2020-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 MCUXCLCIPHER_TYPES_H_
19 #define MCUXCLCIPHER_TYPES_H_
20 
21 #include <stdint.h>
22 #include <stdbool.h>
23 #include <stddef.h>
24 
25 #include <mcuxClConfig.h> // Exported features flags header
26 #include <mcuxClSession.h>
27 
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
46 struct mcuxClCipher_ModeDescriptor;
47 
54 typedef struct mcuxClCipher_ModeDescriptor mcuxClCipher_ModeDescriptor_t;
55 
62 
69 struct mcuxClCipher_TestDescriptor;
70 
77 typedef struct mcuxClCipher_TestDescriptor mcuxClCipher_TestDescriptor_t;
78 
85 
92 struct mcuxClCipher_Context;
93 
100 typedef struct mcuxClCipher_Context mcuxClCipher_Context_t;
101 
108 typedef uint32_t mcuxClCipher_Status_t;
109 
112 #ifdef __cplusplus
113 } /* extern "C" */
114 #endif
115 
116 #endif /* MCUXCLCIPHER_TYPES_H_ */
struct mcuxClCipher_Context mcuxClCipher_Context_t
Cipher context type.
Definition: mcuxClCipher_Types.h:100
const mcuxClCipher_TestDescriptor_t *const mcuxClCipher_Test_t
Cipher selftest mode/algorithm type.
Definition: mcuxClCipher_Types.h:84
uint32_t mcuxClCipher_Status_t
Cipher status code.
Definition: mcuxClCipher_Types.h:108
struct mcuxClCipher_TestDescriptor mcuxClCipher_TestDescriptor_t
Cipher selftest mode/algorithm descriptor type.
Definition: mcuxClCipher_Types.h:77
const mcuxClCipher_ModeDescriptor_t *const mcuxClCipher_Mode_t
Cipher mode/algorithm type.
Definition: mcuxClCipher_Types.h:61
struct mcuxClCipher_ModeDescriptor mcuxClCipher_ModeDescriptor_t
Cipher mode/algorithm descriptor type.
Definition: mcuxClCipher_Types.h:54
Top-level include file for the mcuxClSession component.