MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
mcuxClSignature_Constants.h
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
14#ifndef MCUXCLSIGNATURE_CONSTANTS_H_
15#define MCUXCLSIGNATURE_CONSTANTS_H_
16
17#include <mcuxClConfig.h> // Exported features flags header
18
19/* New Error codes */
20#define MCUXCLSIGNATURE_STATUS_OK (0x0FF72E03u)
21#define MCUXCLSIGNATURE_STATUS_FAULT_ATTACK (0x0FF7F0F0u)
22
23// Old Error Codes
24#define MCUXCLSIGNATURE_STATUS_FAILURE (0x0FF75330u)
25#define MCUXCLSIGNATURE_FAILURE MCUXCLSIGNATURE_STATUS_FAILURE
26#define MCUXCLSIGNATURE_OK MCUXCLSIGNATURE_STATUS_OK
27#define MCUXCLSIGNATURE_STATUS_NOT_OK (0x0FF753FCu)
28#define MCUXCLSIGNATURE_NOT_OK MCUXCLSIGNATURE_STATUS_NOT_OK
29#define MCUXCLSIGNATURE_STATUS_INVALID_PARAMS (0x0FF753F8u)
30#define MCUXCLSIGNATURE_INVALID_PARAMS MCUXCLSIGNATURE_STATUS_INVALID_PARAMS
31#define MCUXCLSIGNATURE_STATUS_NOT_SUPPORTED (0x0FF75370u)
32#define MCUXCLSIGNATURE_NOT_SUPPORTED MCUXCLSIGNATURE_STATUS_NOT_SUPPORTED
33
34#endif /* MCUXCLSIGNATURE_CONSTANTS_H_ */