The WDCInterface is is a drop-in replacement for an EthernetInterface class that allows the user to connect to the Internet with a Wistron NeWeb Corporation (WNC) M14A2A Series data module using the standard network Socket API's. This interface class is used in the AT&T Cellular IoT Starter Kit which is sold by Avnet (http://cloudconnectkits.org/product/att-cellular-iot-starter-kit).

Dependencies:   WncControllerK64F

Dependents:   WNCProximityMqtt Pubnub_ATT_IoT_SK_WNC_sync BluemixDemo BluemixQS ... more

Embed: (wiki syntax)

« Back to documentation index

mbedtls_ctr_drbg_context Struct Reference

mbedtls_ctr_drbg_context Struct Reference

CTR_DRBG context structure. More...

#include <ctr_drbg.h>

Data Fields

unsigned char counter [16]
int reseed_counter
int prediction_resistance
size_t entropy_len
int reseed_interval
mbedtls_aes_context aes_ctx
void * p_entropy

Detailed Description

CTR_DRBG context structure.

Definition at line 88 of file ctr_drbg.h.


Field Documentation

AES context

Definition at line 98 of file ctr_drbg.h.

unsigned char counter[16]

counter (V)

Definition at line 90 of file ctr_drbg.h.

size_t entropy_len

amount of entropy grabbed on each (re)seed

Definition at line 94 of file ctr_drbg.h.

void* p_entropy

context for the entropy function

Definition at line 105 of file ctr_drbg.h.

enable prediction resistance (Automatic reseed before every random generation)

Definition at line 92 of file ctr_drbg.h.

reseed counter

Definition at line 91 of file ctr_drbg.h.

reseed interval

Definition at line 96 of file ctr_drbg.h.