MBEDTLS_ENTROPY_BLOCK_SIZE is only used within mbedTLS.
 
Symbols
loading...
Files
loading...

MBEDTLS_ENTROPY_BLOCK_SIZE macro

Block size of entropy accumulator (SHA-512)

Syntax

#define MBEDTLS_ENTROPY_BLOCK_SIZE 64

References

LocationText
entropy.h:78
#define MBEDTLS_ENTROPY_BLOCK_SIZE 64 /**< Block size of entropy accumulator (SHA-512) */
entropy.c:184
unsigned char tmp[MBEDTLS_ENTROPY_BLOCK_SIZE];
entropy.c:189
if( use_len > MBEDTLS_ENTROPY_BLOCK_SIZE )
entropy.c:199
use_len = MBEDTLS_ENTROPY_BLOCK_SIZE;
entropy.c:330
unsigned char buf[MBEDTLS_ENTROPY_BLOCK_SIZE];
entropy.c:332
if( len > MBEDTLS_ENTROPY_BLOCK_SIZE )
entropy.c:373
memset( buf, 0, MBEDTLS_ENTROPY_BLOCK_SIZE );
entropy.c:392
MBEDTLS_ENTROPY_BLOCK_SIZE ) ) != 0 )
entropy.c:398
if( ( ret = mbedtls_sha512_ret( buf, MBEDTLS_ENTROPY_BLOCK_SIZE,