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 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
21#ifndef MCUXCLOSCCA_TYPES_H_
22#define MCUXCLOSCCA_TYPES_H_
23
24#include <stdint.h>
25#include <stddef.h>
26#include <stdbool.h>
27
28#ifdef __cplusplus
29extern "C"
30{
31#endif
32
33#ifndef __RNG_TYPES_DEFINED_
38#endif
39
41typedef struct mcuxClOscca_MPInt_t
42{
43 uint8_t const *pMPInt;
44 uint16_t wNumBytes;
46
47#ifdef __cplusplus
48} /* extern "C" */
49#endif
50
51#endif /* MCUXCLOSCCA_TYPES_H_ */
struct mcuxClOscca_Rng_Ctx_t mcuxClOscca_Rng_Ctx_t
The RNG context forward declaration.
Definition mcuxClOscca_Types.h:37
Structure for multi-precision integer used in asymetric cryptography.
Definition mcuxClOscca_Types.h:42
uint8_t const * pMPInt
Pointer to the multi precision integer.
Definition mcuxClOscca_Types.h:43
uint16_t wNumBytes
Length in bytes of multi precision integer.
Definition mcuxClOscca_Types.h:44