MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
mcuxClOsccaAeadModes_Modes.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------*/
2/* Copyright 2022-2023 NXP */
3/* */
4/* NXP Proprietary. 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 */
10/* license terms, then you may not retain, install, activate or otherwise */
11/* use the software. */
12/*--------------------------------------------------------------------------*/
13
18#ifndef MCUXCLOSCCAAEADMODES_MODES_H_
19#define MCUXCLOSCCAAEADMODES_MODES_H_
20
21#include <mcuxCsslAnalysis.h>
22#include <mcuxClAead_Types.h>
23#include <mcuxCsslAnalysis.h>
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
35MCUX_CSSL_ANALYSIS_START_SUPPRESS_DECLARED_BUT_NEVER_REFERENCED("Consumed by user / customer. Hence, it is declared but never referenced. ")
36#ifdef MCUXCL_FEATURE_SM4_CCM
37
41extern const mcuxClAead_ModeDescriptor_t mcuxClOsccaAeadModes_ModeDescriptor_CCM_ENC;
42
46static mcuxClAead_Mode_t mcuxClOsccaAead_Mode_CCM_ENC =
47 &mcuxClOsccaAeadModes_ModeDescriptor_CCM_ENC;
48
52extern const mcuxClAead_ModeDescriptor_t mcuxClOsccaAeadModes_ModeDescriptor_CCM_DEC;
53
57static mcuxClAead_Mode_t mcuxClOsccaAead_Mode_CCM_DEC =
58 &mcuxClOsccaAeadModes_ModeDescriptor_CCM_DEC;
59
60
61#endif /* MCUXCL_FEATURE_SM4_CCM */
62MCUX_CSSL_ANALYSIS_STOP_SUPPRESS_DECLARED_BUT_NEVER_REFERENCED()
63
64
66#ifdef __cplusplus
67} /* extern "C" */
68#endif
69
70#endif /* MCUXCLOSCCAAEADMODES_MODES_H_ */
Type definitions for the mcuxClAead component.
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