Mbed TLS v3.6.1
|
#include <hmac_drbg.h>
Data Fields | |
mbedtls_md_context_t | private_md_ctx |
unsigned char | private_V [MBEDTLS_MD_MAX_SIZE] |
int | private_reseed_counter |
size_t | private_entropy_len |
int | private_prediction_resistance |
int | private_reseed_interval |
int(* | private_f_entropy )(void *, unsigned char *, size_t) |
void * | private_p_entropy |
mbedtls_threading_mutex_t | private_mutex |
HMAC_DRBG context.
Definition at line 74 of file hmac_drbg.h.
size_t mbedtls_hmac_drbg_context::private_entropy_len |
entropy bytes grabbed on each (re)seed
Definition at line 82 of file hmac_drbg.h.
int(* mbedtls_hmac_drbg_context::private_f_entropy) (void *, unsigned char *, size_t) |
entropy function
Definition at line 88 of file hmac_drbg.h.
mbedtls_md_context_t mbedtls_hmac_drbg_context::private_md_ctx |
HMAC context (inc. K)
Definition at line 77 of file hmac_drbg.h.
mbedtls_threading_mutex_t mbedtls_hmac_drbg_context::private_mutex |
Definition at line 100 of file hmac_drbg.h.
void* mbedtls_hmac_drbg_context::private_p_entropy |
context for the entropy function
Definition at line 89 of file hmac_drbg.h.
int mbedtls_hmac_drbg_context::private_prediction_resistance |
enable prediction resistance (Automatic reseed before every random generation)
Definition at line 83 of file hmac_drbg.h.
int mbedtls_hmac_drbg_context::private_reseed_counter |
reseed counter
Definition at line 79 of file hmac_drbg.h.
int mbedtls_hmac_drbg_context::private_reseed_interval |
reseed interval
Definition at line 85 of file hmac_drbg.h.
unsigned char mbedtls_hmac_drbg_context::private_V[MBEDTLS_MD_MAX_SIZE] |
V in the spec
Definition at line 78 of file hmac_drbg.h.