MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
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
30extern "C" {
31#endif
32
33
47struct mcuxClAead_ModeDescriptor;
48
55typedef struct mcuxClAead_ModeDescriptor mcuxClAead_ModeDescriptor_t;
56
57
64
71struct mcuxClAead_TestDescriptor;
72
79typedef struct mcuxClAead_TestDescriptor mcuxClAead_TestDescriptor_t;
80
87
94struct mcuxClAead_Context;
95
102typedef struct mcuxClAead_Context mcuxClAead_Context_t;
103
110typedef uint32_t mcuxClAead_Status_t;
111
114#ifdef __cplusplus
115} /* extern "C" */
116#endif
117
118#endif /* MCUXCLAEAD_TYPES_H_ */
Top-level include file for the mcuxClSession component.
uint32_t mcuxClAead_Status_t
AEAD status code.
Definition mcuxClAead_Types.h:110
const mcuxClAead_ModeDescriptor_t *const mcuxClAead_Mode_t
AEAD mode/algorithm type.
Definition mcuxClAead_Types.h:63
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
struct mcuxClAead_TestDescriptor mcuxClAead_TestDescriptor_t
Aead selftest mode/algorithm descriptor type.
Definition mcuxClAead_Types.h:79
struct mcuxClAead_Context mcuxClAead_Context_t
AEAD context type.
Definition mcuxClAead_Types.h:102