mbedTLS
mbedtls_sha512_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
STM32 Libraries and Samples
mbedTLS
mbedtls_sha512_context::total
mbedtls_sha512_context::total field
The number of Bytes processed.
Syntax
Show:
Summary
Declaration
from
sha512.h:59
uint64_t
total
[
2
]
;
Examples
References
from
examples
Code
Location
Referrer
uint64_t
total
[
2
]
;
/*!< The number of Bytes processed. */
sha512.h:59
ctx
->
total
[
0
]
=
0
;
sha512.c:127
mbedtls_sha512_starts_ret()
ctx
->
total
[
1
]
=
0
;
sha512.c:128
mbedtls_sha512_starts_ret()
left
=
(
unsigned
int
)
(
ctx
->
total
[
0
]
&
0x7F
)
;
sha512.c:319
mbedtls_sha512_update_ret()
ctx
->
total
[
0
]
+=
(
uint64_t
)
ilen
;
sha512.c:322
mbedtls_sha512_update_ret()
if
(
ctx
->
total
[
0
]
<
(
uint64_t
)
ilen
)
sha512.c:324
mbedtls_sha512_update_ret()
ctx
->
total
[
1
]
++
;
sha512.c:325
mbedtls_sha512_update_ret()
used
=
ctx
->
total
[
0
]
&
0x7F
;
sha512.c:379
mbedtls_sha512_finish_ret()
high
=
(
ctx
->
total
[
0
]
>
>
61
)
sha512.c:402
mbedtls_sha512_finish_ret()
|
(
ctx
->
total
[
1
]
<
<
3
)
;
sha512.c:403
mbedtls_sha512_finish_ret()
low
=
(
ctx
->
total
[
0
]
<
<
3
)
;
sha512.c:404
mbedtls_sha512_finish_ret()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mbedtls_sha512_context::total
is read by 3 functions:
All items filtered out
mbedtls_sha512_context::total
mbedtls_sha512_starts_ret()
mbedtls_sha512_update_ret()
mbedtls_sha512_finish_ret()
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