MCUX CLNS
MCUX Crypto Library Normal Secure
 
Loading...
Searching...
No Matches
mcuxClEls_Types_Types

Defines all types of mcuxClEls_Types. More...

Data Structures

union  mcuxClEls_KeyProp_t
 Type for ELS key store key properties. More...
 

Macros

#define utlpsms
 Deprecated name for mcuxClEls_KeyProp_t.utlspms.
 

Typedefs

typedef uint32_t mcuxClEls_Status_t
 Type for ELS driver status codes.
 
typedef mcuxClEls_Status_t mcuxClEls_Status_Protected_t
 Deprecated type for ELS driver protected status codes.
 
typedef uint32_t mcuxClEls_KeyIndex_t
 Type for ELS keystore indices.
 
typedef mcuxClEls_Status_t(* mcuxClEls_TransferToRegisterFunction_t) (uint32_t volatile *pDestRegister, uint8_t const *pSource, size_t sourceLength, void *pCallerData)
 Function type for transfer of data to a memory-mapped register.
 

Detailed Description

Defines all types of mcuxClEls_Types.

Macro Definition Documentation

◆ utlpsms

#define utlpsms

Deprecated name for mcuxClEls_KeyProp_t.utlspms.

Typedef Documentation

◆ mcuxClEls_Status_t

typedef uint32_t mcuxClEls_Status_t

Type for ELS driver status codes.

◆ mcuxClEls_Status_Protected_t

Deprecated type for ELS driver protected status codes.

◆ mcuxClEls_KeyIndex_t

typedef uint32_t mcuxClEls_KeyIndex_t

Type for ELS keystore indices.

◆ mcuxClEls_TransferToRegisterFunction_t

typedef mcuxClEls_Status_t(* mcuxClEls_TransferToRegisterFunction_t) (uint32_t volatile *pDestRegister, uint8_t const *pSource, size_t sourceLength, void *pCallerData)

Function type for transfer of data to a memory-mapped register.

This function type is used as a callback for handling data transfer from memory to a memory-mapped register. Such a function shall read data from the uint8_t array source, and write data via a sequence of writes to destRegister. Further specification of this function's behavior can be found in the documentation of the function that accepts this function as a callback parameter.

Parameters
[out]pDestRegisterMemory-mapped register that the output data shall be written to
[in]pSourceArray containing the input data
[in]sourceLengthSize of source in bytes
[in,out]pCallerDataCustom pointer that is provided by the caller and forwarded to the callback function by the operation
Returns
An error code that can be any error code in MCUXCLELS_STATUS_, see individual documentation for more information