MCUX CLNS
MCUX Crypto Library Normal Secure
mcuxClOscca_Types.h
Go to the documentation of this file.
1 /*--------------------------------------------------------------------------*/
2 /* Copyright 2016, 2021 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 /* Security Classification: Company Confidential */
14 /*--------------------------------------------------------------------------*/
15 
23 #ifndef MCUXCLOSCCA_TYPES_H_
24 #define MCUXCLOSCCA_TYPES_H_
25 
26 #include <stdint.h>
27 #include <stddef.h>
28 #include <stdbool.h>
29 
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #endif
34 
35 #ifndef __RNG_TYPES_DEFINED_
36 
40 #endif
41 
43 typedef struct mcuxClOscca_MPInt_t
44 {
45  uint8_t const *pMPInt;
46  uint16_t wNumBytes;
48 
49 #ifdef __cplusplus
50 } /* extern "C" */
51 #endif
52 
53 #endif /* MCUXCLOSCCA_TYPES_H_ */
Structure for multi-precision integer used in asymetric cryptography.
Definition: mcuxClOscca_Types.h:43
struct mcuxClOscca_MPInt_t mcuxClOscca_MPInt_t
Structure for multi-precision integer used in asymetric cryptography.
struct mcuxClOscca_Rng_Ctx_t mcuxClOscca_Rng_Ctx_t
The RNG context forward declaration.
Definition: mcuxClOscca_Types.h:39
uint8_t const * pMPInt
Pointer to the multi precision integer.
Definition: mcuxClOscca_Types.h:45
uint16_t wNumBytes
Length in bytes of multi precision integer.
Definition: mcuxClOscca_Types.h:46