mbed TLS v1.3.11
|
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 |
aes_context | aes_ctx |
int(* | f_entropy )(void *, unsigned char *, size_t) |
void * | p_entropy |
CTR_DRBG context structure.
Definition at line 84 of file ctr_drbg.h.
aes_context ctr_drbg_context::aes_ctx |
AES context
Definition at line 94 of file ctr_drbg.h.
unsigned char ctr_drbg_context::counter[16] |
counter (V)
Definition at line 86 of file ctr_drbg.h.
size_t ctr_drbg_context::entropy_len |
amount of entropy grabbed on each (re)seed
Definition at line 90 of file ctr_drbg.h.
int(* ctr_drbg_context::f_entropy)(void *, unsigned char *, size_t) |
Definition at line 99 of file ctr_drbg.h.
void* ctr_drbg_context::p_entropy |
context for the entropy function
Definition at line 101 of file ctr_drbg.h.
int ctr_drbg_context::prediction_resistance |
enable prediction resistance (Automatic reseed before every random generation)
Definition at line 88 of file ctr_drbg.h.
int ctr_drbg_context::reseed_counter |
reseed counter
Definition at line 87 of file ctr_drbg.h.
int ctr_drbg_context::reseed_interval |
reseed interval
Definition at line 92 of file ctr_drbg.h.