netxduo
NX_CRYPTO_DRBG_STRUCT::nx_crypto_drbg_seedlen
is only used within netxduo.
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
STM32 Libraries and Samples
netxduo
NX_CRYPTO_DRBG_STRUCT::nx_crypto_drbg_seedlen
NX_CRYPTO_DRBG_STRUCT::nx_crypto_drbg_seedlen field
Syntax
Show:
Summary
Declaration
from
nx_crypto_drbg.h:141
UINT
nx_crypto_drbg_seedlen
;
Examples
References
from
examples
Code
Location
Referrer
UINT
nx_crypto_drbg_seedlen
;
nx_crypto_drbg.h:141
while
(
temp_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:171
_nx_crypto_drbg_update()
for
(
temp_len
=
0
;
temp_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
;
temp_len
++
)
nx_crypto_drbg.c:216
_nx_crypto_drbg_update()
drbg_ptr
->
nx_crypto_drbg_seedlen
=
(
UINT
)
(
NX_CRYPTO_DRBG_BLOCK_LENGTH
+
(
drbg_ptr
->
nx_crypto_drbg_crypto_method
->
nx_crypto_key_size_in_bits
>
>
3
)
)
;
nx_crypto_drbg.c:293
_nx_crypto_drbg_instantiate()
_nx_crypto_drbg_block_cipher_df
(
drbg_ptr
,
entropy_len
+
nonce_len
+
personalization_string_len
,
seed_material
,
drbg_ptr
->
nx_crypto_drbg_seedlen
)
;
nx_crypto_drbg.c:319
_nx_crypto_drbg_instantiate()
if
(
personalization_string_len
>
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:323
_nx_crypto_drbg_instantiate()
if
(
personalization_string_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:334
_nx_crypto_drbg_instantiate()
drbg_ptr
->
nx_crypto_drbg_seedlen
-
personalization_string_len
)
;
nx_crypto_drbg.c:337
_nx_crypto_drbg_instantiate()
entropy_len
=
drbg_ptr
->
nx_crypto_drbg_seedlen
;
nx_crypto_drbg.c:340
_nx_crypto_drbg_instantiate()
status
=
drbg_ptr
->
nx_crypto_drbg_get_entropy
(
drbg_ptr
->
nx_crypto_drbg_buffer
,
&
entropy_len
,
drbg_ptr
->
nx_crypto_drbg_seedlen
)
;
nx_crypto_drbg.c:341
_nx_crypto_drbg_instantiate()
for
(
i
=
0
;
i
<
drbg_ptr
->
nx_crypto_drbg_seedlen
;
i
++
)
nx_crypto_drbg.c:354
_nx_crypto_drbg_instantiate()
_nx_crypto_drbg_block_cipher_df
(
drbg_ptr
,
entropy_len
+
additional_input_len
,
seed_material
,
drbg_ptr
->
nx_crypto_drbg_seedlen
)
;
nx_crypto_drbg.c:454
_nx_crypto_drbg_reseed()
if
(
additional_input_len
>
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:458
_nx_crypto_drbg_reseed()
if
(
additional_input_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:465
_nx_crypto_drbg_reseed()
drbg_ptr
->
nx_crypto_drbg_seedlen
-
additional_input_len
)
;
nx_crypto_drbg.c:468
_nx_crypto_drbg_reseed()
entropy_len
=
drbg_ptr
->
nx_crypto_drbg_seedlen
;
nx_crypto_drbg.c:471
_nx_crypto_drbg_reseed()
for
(
i
=
0
;
i
<
drbg_ptr
->
nx_crypto_drbg_seedlen
;
i
++
)
nx_crypto_drbg.c:485
_nx_crypto_drbg_reseed()
_nx_crypto_drbg_block_cipher_df
(
drbg_ptr
,
additional_input_len
,
addition
,
drbg_ptr
->
nx_crypto_drbg_seedlen
)
;
nx_crypto_drbg.c:584
_nx_crypto_drbg_generate()
if
(
additional_input_len
>
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:591
_nx_crypto_drbg_generate()
if
(
additional_input_len
==
drbg_ptr
->
nx_crypto_drbg_seedlen
&&
additional_input
!=
NX_CRYPTO_NULL
)
nx_crypto_drbg.c:596
_nx_crypto_drbg_generate()
if
(
additional_input_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:604
_nx_crypto_drbg_generate()
drbg_ptr
->
nx_crypto_drbg_seedlen
-
additional_input_len
)
;
nx_crypto_drbg.c:607
_nx_crypto_drbg_generate()
if
(
additional_input_len
>
0
&&
(
drbg_ptr
->
nx_crypto_drbg_use_df
||
additional_input_len
!=
drbg_ptr
->
nx_crypto_drbg_seedlen
)
)
nx_crypto_drbg.c:685
_nx_crypto_drbg_generate()
while
(
temp_len
<
drbg_ptr
->
nx_crypto_drbg_seedlen
)
nx_crypto_drbg.c:798
_nx_crypto_drbg_block_cipher_df()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_CRYPTO_DRBG_STRUCT::nx_crypto_drbg_seedlen
is written by 1 function and is read by 5 functions:
_nx_crypto_drbg_instantiate()
All items filtered out
NX_CRYPTO_DRBG_STRUCT::nx_crypto_drbg_seedlen
_nx_crypto_drbg_update()
_nx_crypto_drbg_instantiate()
_nx_crypto_drbg_reseed()
_nx_crypto_drbg_generate()
_nx_crypto_drbg_block_cipher_df()
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