netxduo
NX_CRYPTO_SHA256_STRUCT::nx_sha256_bit_count
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_SHA256_STRUCT::nx_sha256_bit_count
NX_CRYPTO_SHA256_STRUCT::nx_sha256_bit_count field
Syntax
Show:
Summary
Declaration
from
nx_crypto_sha2.h:79
ULONG
nx_sha256_bit_count
[
2
]
;
Examples
References
from
examples
Code
Location
Referrer
ULONG
nx_sha256_bit_count
[
2
]
;
/* Contains the 64-bit total bit */
nx_crypto_sha2.h:79
context
->
nx_sha256_bit_count
[
0
]
=
0
;
/* Clear the lower 32-bits of the count.*/
nx_crypto_sha2.c:107
_nx_crypto_sha256_initialize()
context
->
nx_sha256_bit_count
[
1
]
=
0
;
/* Clear the upper 32-bits of the count.*/
nx_crypto_sha2.c:108
_nx_crypto_sha256_initialize()
current_bytes
=
(
context
->
nx_sha256_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_crypto_sha2.c:208
_nx_crypto_sha256_update()
context
->
nx_sha256_bit_count
[
0
]
+=
(
input_length
<
<
3
)
;
nx_crypto_sha2.c:214
_nx_crypto_sha256_update()
if
(
context
->
nx_sha256_bit_count
[
0
]
<
(
input_length
<
<
3
)
)
nx_crypto_sha2.c:217
_nx_crypto_sha256_update()
context
->
nx_sha256_bit_count
[
1
]
++
;
nx_crypto_sha2.c:221
_nx_crypto_sha256_update()
context
->
nx_sha256_bit_count
[
1
]
+=
(
input_length
>
>
29
)
;
nx_crypto_sha2.c:225
_nx_crypto_sha256_update()
bit_count_string
[
0
]
=
context
->
nx_sha256_bit_count
[
1
]
;
nx_crypto_sha2.c:327
_nx_crypto_sha256_digest_calculate()
bit_count_string
[
1
]
=
context
->
nx_sha256_bit_count
[
0
]
;
nx_crypto_sha2.c:329
_nx_crypto_sha256_digest_calculate()
current_byte_count
=
(
context
->
nx_sha256_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_crypto_sha2.c:333
_nx_crypto_sha256_digest_calculate()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_CRYPTO_SHA256_STRUCT::nx_sha256_bit_count
is read by 3 functions:
All items filtered out
NX_CRYPTO_SHA256_STRUCT::nx_sha256_bit_count
_nx_crypto_sha256_initialize()
_nx_crypto_sha256_update()
_nx_crypto_sha256_digest_calculate()
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