mbedTLS
mbedtls_sha1_context::total
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_sha1_context::total
mbedtls_sha1_context::total field
The number of Bytes processed.
Syntax
Show:
Summary
Declaration
from
sha1.h:46
uint32_t
MBEDTLS_PRIVATE
(
total
)
[
2
]
;
Examples
References
from
examples
Code
Location
Referrer
uint32_t
MBEDTLS_PRIVATE
(
total
)
[
2
]
;
/*!< The number of Bytes processed. */
sha1.h:46
uint32_t
total
[
2
]
;
/*!< number of bytes processed */
sha1_alt.h:47
ctx
->
total
[
0
]
=
0
;
esp_sha1.c:106
mbedtls_sha1_starts()
ctx
->
total
[
1
]
=
0
;
esp_sha1.c:107
mbedtls_sha1_starts()
left
=
ctx
->
total
[
0
]
&
0x3F
;
esp_sha1.c:327
mbedtls_sha1_update()
ctx
->
total
[
0
]
+=
(
uint32_t
)
ilen
;
esp_sha1.c:330
mbedtls_sha1_update()
ctx
->
total
[
0
]
&=
0xFFFFFFFF
;
esp_sha1.c:331
mbedtls_sha1_update()
if
(
ctx
->
total
[
0
]
<
(
uint32_t
)
ilen
)
{
esp_sha1.c:333
mbedtls_sha1_update()
ctx
->
total
[
1
]
++
;
esp_sha1.c:334
mbedtls_sha1_update()
high
=
(
ctx
->
total
[
0
]
>
>
29
)
esp_sha1.c:386
mbedtls_sha1_finish()
|
(
ctx
->
total
[
1
]
<
<
3
)
;
esp_sha1.c:387
mbedtls_sha1_finish()
low
=
(
ctx
->
total
[
0
]
<
<
3
)
;
esp_sha1.c:388
mbedtls_sha1_finish()
last
=
ctx
->
total
[
0
]
&
0x3F
;
esp_sha1.c:393
mbedtls_sha1_finish()
ctx
->
total
[
0
]
=
0
;
sha1.c:52
mbedtls_sha1_starts()
ctx
->
total
[
1
]
=
0
;
sha1.c:53
mbedtls_sha1_starts()
left
=
ctx
->
total
[
0
]
&
0x3F
;
sha1.c:250
mbedtls_sha1_update()
ctx
->
total
[
0
]
+=
(
uint32_t
)
ilen
;
sha1.c:253
mbedtls_sha1_update()
ctx
->
total
[
0
]
&=
0xFFFFFFFF
;
sha1.c:254
mbedtls_sha1_update()
if
(
ctx
->
total
[
0
]
<
(
uint32_t
)
ilen
)
{
sha1.c:256
mbedtls_sha1_update()
ctx
->
total
[
1
]
++
;
sha1.c:257
mbedtls_sha1_update()
used
=
ctx
->
total
[
0
]
&
0x3F
;
sha1.c:301
mbedtls_sha1_finish()
high
=
(
ctx
->
total
[
0
]
>
>
29
)
sha1.c:322
mbedtls_sha1_finish()
|
(
ctx
->
total
[
1
]
<
<
3
)
;
sha1.c:323
mbedtls_sha1_finish()
low
=
(
ctx
->
total
[
0
]
<
<
3
)
;
sha1.c:324
mbedtls_sha1_finish()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mbedtls_sha1_context::total
is read by 3 functions:
All items filtered out
mbedtls_sha1_context::total
mbedtls_sha1_starts()
mbedtls_sha1_update()
mbedtls_sha1_finish()
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