mbedTLS
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT macro
The maximum size of seed or reseed buffer in bytes.
Syntax
Show:
Summary
Declaration
from
ctr_drbg.h:142
#define
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
384
Examples
References
from
examples
Code
Location
#define
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
384
ctr_drbg.h:142
if
(
len
>
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
)
{
ctr_drbg.c:136
unsigned
char
buf
[
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
+
ctr_drbg.c:164
if
(
data_len
>
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
)
{
ctr_drbg.c:185
memset
(
buf
,
0
,
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
+
ctr_drbg.c:189
unsigned
char
seed
[
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
]
;
ctr_drbg.c:452
if
(
ctx
->
entropy_len
>
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
)
{
ctr_drbg.c:456
if
(
nonce_len
>
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
-
ctx
->
entropy_len
)
{
ctr_drbg.c:459
if
(
len
>
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
-
ctx
->
entropy_len
-
nonce_len
)
{
ctr_drbg.c:462
memset
(
seed
,
0
,
MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
)
;
ctr_drbg.c:466
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out