MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
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
31extern "C"
32{
33#endif
34
35#ifndef __RNG_TYPES_DEFINED_
40#endif
41
43typedef 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_ */
struct mcuxClOscca_Rng_Ctx_t mcuxClOscca_Rng_Ctx_t
The RNG context forward declaration.
Definition mcuxClOscca_Types.h:39
Structure for multi-precision integer used in asymetric cryptography.
Definition mcuxClOscca_Types.h:44
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