MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
mcuxCsslDataIntegrity_None.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------*/
2/* Copyright 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
19#ifndef MCUXCSSLDATAINTEGRITY_NONE_H_
20#define MCUXCSSLDATAINTEGRITY_NONE_H_
21
37/****************************************************************************/
38/* Constants */
39/****************************************************************************/
40
46#define MCUX_CSSL_DI_CHECK_PASSED_IMPL (MCUX_CSSL_SC_CHECK_PASSED)
47
53#define MCUX_CSSL_DI_CHECK_FAILED_IMPL (MCUX_CSSL_SC_CHECK_FAILED)
54
55/****************************************************************************/
56/* Initialization */
57/****************************************************************************/
58
66#define MCUX_CSSL_DI_INIT_IMPL(backupValue) \
67 uint32_t backupValue = 0u
68
69/****************************************************************************/
70/* Check */
71/****************************************************************************/
72
81#define MCUX_CSSL_DI_CHECK_IMPL(reference) \
82 (MCUX_CSSL_DI_CHECK_PASSED_IMPL)
83
94#define MCUX_CSSL_DI_CHECK_EXIT_IMPL(id, reference, fail) \
95 (void)(reference)
96
97/****************************************************************************/
98/* Updates */
99/****************************************************************************/
100
115#define MCUX_CSSL_DI_RECORD_IMPL(identifier, value) \
116 /* intentionally empty */
117
126#define MCUX_CSSL_DI_EXPUNGE_IMPL(identifier, value) \
127 /* intentionally empty */
128
129
130#endif /* MCUXCSSLDATAINTEGRITY_NONE_H_ */