mbedTLS
+
0
/1 examples
SourceVu will show references to
mbedtls_sha256_context
from the following samples and libraries:
ESP-IDF
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
mbedtls_sha256_context
mbedtls_sha256_context struct
The SHA-256 context structure. The structure is used both for SHA-256 and for SHA-224 checksum calculations. The choice between these two is made in the call to mbedtls_sha256_starts().
Syntax
Show:
Summary
Declaration
from
sha256.h:40
typedef
struct
mbedtls_sha256_context
{
unsigned
char
MBEDTLS_PRIVATE
(
buffer
)
[
64
]
;
uint32_t
MBEDTLS_PRIVATE
(
total
)
[
2
]
;
uint32_t
MBEDTLS_PRIVATE
(
state
)
[
8
]
;
#if
defined
(
MBEDTLS_SHA224_C
)
int
MBEDTLS_PRIVATE
(
is224
)
;
#endif
}
mbedtls_sha256_context
;
Fields
Field
Declared as
Description
private_buffer
unsigned
char
MBEDTLS_PRIVATE
(
buffer
)
[
64
]
The data block being processed.
private_total
uint32_t
MBEDTLS_PRIVATE
(
total
)
[
2
]
The number of Bytes processed.
private_state
uint32_t
MBEDTLS_PRIVATE
(
state
)
[
8
]
The intermediate digest state.
private_is224
int
MBEDTLS_PRIVATE
mbedtls_sha256_context::buffer
unsigned
char
MBEDTLS_PRIVATE
(
buffer
)
[
64
]
The data block being processed.
mbedtls_sha256_context::total
uint32_t
MBEDTLS_PRIVATE
(
total
)
[
2
]
The number of Bytes processed.
mbedtls_sha256_context::state
uint32_t
MBEDTLS_PRIVATE
(
state
)
[
8
]
The intermediate digest state.
mbedtls_sha256_context::is224
int
MBEDTLS_PRIVATE
(
is224
Related Functions
Found 10 other functions taking a
mbedtls_sha256_context
argument:
Function
Description
mbedtls_sha256_update()
This function feeds an input buffer into an ongoing SHA-256 checksum calculation.
mbedtls_sha256_free()
This function clears a SHA-256 context.
mbedtls_sha256_starts()
This function starts a SHA-224 or SHA-256 checksum calculation.
mbedtls_sha256_finish()
This function finishes the SHA-256 operation, and writes the result to the output buffer.
mbedtls_sha256_init()
This function initializes a SHA-256 context.
mbedtls_internal_sha256_process()
This function processes a single data block within the ongoing SHA-256 computation. This function is for internal use only.
mbedtls_sha256_clone()
This function clones the state of a SHA-256 context.
esp_internal_sha256_parallel_engine_process()
mbedtls_sha256_software_process()
mbedtls_internal_sha256_process_many()
Examples
mbedtls_sha256_context
is referenced by 1 libraries and example projects:
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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