41#ifndef MBEDTLS_CTR_DRBG_H
42#define MBEDTLS_CTR_DRBG_H
49#if defined(MBEDTLS_THREADING_C)
54#define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034
56#define MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG -0x0036
58#define MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG -0x0038
60#define MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR -0x003A
62#define MBEDTLS_CTR_DRBG_BLOCKSIZE 16
64#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY)
65#define MBEDTLS_CTR_DRBG_KEYSIZE 16
72#define MBEDTLS_CTR_DRBG_KEYSIZE 32
80#define MBEDTLS_CTR_DRBG_KEYBITS ( MBEDTLS_CTR_DRBG_KEYSIZE * 8 )
81#define MBEDTLS_CTR_DRBG_SEEDLEN ( MBEDTLS_CTR_DRBG_KEYSIZE + MBEDTLS_CTR_DRBG_BLOCKSIZE )
96#if !defined(MBEDTLS_CTR_DRBG_ENTROPY_LEN)
97#if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_ENTROPY_FORCE_SHA256)
101#define MBEDTLS_CTR_DRBG_ENTROPY_LEN 48
109#if !defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY)
114#define MBEDTLS_CTR_DRBG_ENTROPY_LEN 32
118#if !defined(MBEDTLS_CTR_DRBG_RESEED_INTERVAL)
119#define MBEDTLS_CTR_DRBG_RESEED_INTERVAL 10000
123#if !defined(MBEDTLS_CTR_DRBG_MAX_INPUT)
124#define MBEDTLS_CTR_DRBG_MAX_INPUT 256
128#if !defined(MBEDTLS_CTR_DRBG_MAX_REQUEST)
129#define MBEDTLS_CTR_DRBG_MAX_REQUEST 1024
133#if !defined(MBEDTLS_CTR_DRBG_MAX_SEED_INPUT)
134#define MBEDTLS_CTR_DRBG_MAX_SEED_INPUT 384
140#define MBEDTLS_CTR_DRBG_PR_OFF 0
142#define MBEDTLS_CTR_DRBG_PR_ON 1
149#if MBEDTLS_CTR_DRBG_ENTROPY_LEN >= MBEDTLS_CTR_DRBG_KEYSIZE * 3 / 2
156#define MBEDTLS_CTR_DRBG_ENTROPY_NONCE_LEN 0
164#define MBEDTLS_CTR_DRBG_ENTROPY_NONCE_LEN ( MBEDTLS_CTR_DRBG_ENTROPY_LEN + 1 ) / 2
203#if defined(MBEDTLS_THREADING_C)
263#if MBEDTLS_CTR_DRBG_ENTROPY_NONCE_LEN == 0
275#if defined(MBEDTLS_THREADING_C)
330 int (*f_entropy)(
void *,
unsigned char *,
size_t),
332 const unsigned char *custom,
444 const unsigned char *additional,
size_t len );
467 const unsigned char *additional,
502 unsigned char *output,
size_t output_len,
503 const unsigned char *additional,
size_t add_len );
511#if defined(MBEDTLS_THREADING_C)
530 unsigned char *output,
size_t output_len );
532#if defined(MBEDTLS_FS_IO)
563#if defined(MBEDTLS_SELF_TEST)
This file contains AES definitions and functions.
Build-time configuration info.
int mbedtls_ctr_drbg_set_nonce_len(mbedtls_ctr_drbg_context *ctx, size_t len)
This function sets the amount of entropy grabbed as a nonce for the initial seeding.
int mbedtls_ctr_drbg_random_with_add(void *p_rng, unsigned char *output, size_t output_len, const unsigned char *additional, size_t add_len)
This function updates a CTR_DRBG instance with additional data and uses it to generate random data.
void mbedtls_ctr_drbg_free(mbedtls_ctr_drbg_context *ctx)
This function resets CTR_DRBG context to the state immediately after initial call of mbedtls_ctr_drbg...
int mbedtls_ctr_drbg_update_seed_file(mbedtls_ctr_drbg_context *ctx, const char *path)
This function reads and updates a seed file. The seed is added to this instance.
int mbedtls_ctr_drbg_reseed(mbedtls_ctr_drbg_context *ctx, const unsigned char *additional, size_t len)
This function reseeds the CTR_DRBG context, that is extracts data from the entropy source.
int mbedtls_ctr_drbg_self_test(int verbose)
The CTR_DRBG checkup routine.
void mbedtls_ctr_drbg_init(mbedtls_ctr_drbg_context *ctx)
This function initializes the CTR_DRBG context, and prepares it for mbedtls_ctr_drbg_seed() or mbedtl...
int mbedtls_ctr_drbg_update(mbedtls_ctr_drbg_context *ctx, const unsigned char *additional, size_t add_len)
This function updates the state of the CTR_DRBG context.
int mbedtls_ctr_drbg_seed(mbedtls_ctr_drbg_context *ctx, int(*f_entropy)(void *, unsigned char *, size_t), void *p_entropy, const unsigned char *custom, size_t len)
This function seeds and sets up the CTR_DRBG entropy source for future reseeds.
void mbedtls_ctr_drbg_set_prediction_resistance(mbedtls_ctr_drbg_context *ctx, int resistance)
This function turns prediction resistance on or off. The default value is off.
void mbedtls_ctr_drbg_set_reseed_interval(mbedtls_ctr_drbg_context *ctx, int interval)
This function sets the reseed interval.
void mbedtls_ctr_drbg_set_entropy_len(mbedtls_ctr_drbg_context *ctx, size_t len)
This function sets the amount of entropy grabbed on each seed or reseed.
int mbedtls_ctr_drbg_random(void *p_rng, unsigned char *output, size_t output_len)
This function uses CTR_DRBG to generate random data.
int mbedtls_ctr_drbg_write_seed_file(mbedtls_ctr_drbg_context *ctx, const char *path)
This function writes a seed file.
Macro wrapper for struct's members.
#define MBEDTLS_PRIVATE(member)
The AES context-type definition.
The CTR_DRBG context structure.
Threading abstraction layer.