netxduo
NX_CRYPTO_SHA1_STRUCT::nx_sha1_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_SHA1_STRUCT::nx_sha1_bit_count
NX_CRYPTO_SHA1_STRUCT::nx_sha1_bit_count field
Syntax
Show:
Summary
Declaration
from
nx_crypto_sha1.h:108
ULONG
nx_sha1_bit_count
[
2
]
;
Examples
References
from
examples
Code
Location
Referrer
ULONG
nx_sha1_bit_count
[
2
]
;
/* Contains the 64-bit total bit */
nx_crypto_sha1.h:108
context
->
nx_sha1_bit_count
[
0
]
=
0
;
/* Clear the lower 32-bits of the count.*/
nx_crypto_sha1.c:129
_nx_crypto_sha1_initialize()
context
->
nx_sha1_bit_count
[
1
]
=
0
;
/* Clear the upper 32-bits of the count.*/
nx_crypto_sha1.c:130
_nx_crypto_sha1_initialize()
current_bytes
=
(
context
->
nx_sha1_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_crypto_sha1.c:210
_nx_crypto_sha1_update()
context
->
nx_sha1_bit_count
[
0
]
+=
(
input_length
<
<
3
)
;
nx_crypto_sha1.c:216
_nx_crypto_sha1_update()
if
(
context
->
nx_sha1_bit_count
[
0
]
<
(
input_length
<
<
3
)
)
nx_crypto_sha1.c:219
_nx_crypto_sha1_update()
context
->
nx_sha1_bit_count
[
1
]
++
;
nx_crypto_sha1.c:223
_nx_crypto_sha1_update()
context
->
nx_sha1_bit_count
[
1
]
+=
(
input_length
>
>
29
)
;
nx_crypto_sha1.c:227
_nx_crypto_sha1_update()
bit_count_string
[
0
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
1
]
>
>
24
)
;
nx_crypto_sha1.c:331
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
1
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
1
]
>
>
16
)
;
nx_crypto_sha1.c:332
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
2
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
1
]
>
>
8
)
;
nx_crypto_sha1.c:333
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
3
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
1
]
)
;
nx_crypto_sha1.c:334
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
4
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
0
]
>
>
24
)
;
nx_crypto_sha1.c:335
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
5
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
0
]
>
>
16
)
;
nx_crypto_sha1.c:336
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
6
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
0
]
>
>
8
)
;
nx_crypto_sha1.c:337
_nx_crypto_sha1_digest_calculate()
bit_count_string
[
7
]
=
(
UCHAR
)
(
context
->
nx_sha1_bit_count
[
0
]
)
;
nx_crypto_sha1.c:338
_nx_crypto_sha1_digest_calculate()
current_byte_count
=
(
context
->
nx_sha1_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_crypto_sha1.c:341
_nx_crypto_sha1_digest_calculate()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_CRYPTO_SHA1_STRUCT::nx_sha1_bit_count
is read by 3 functions:
All items filtered out
NX_CRYPTO_SHA1_STRUCT::nx_sha1_bit_count
_nx_crypto_sha1_initialize()
_nx_crypto_sha1_update()
_nx_crypto_sha1_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