netxduo
NX_CRYPTO_SHA256
is only used within netxduo.
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
STM32 Libraries and Samples
netxduo
NX_CRYPTO_SHA256
NX_CRYPTO_SHA256 struct
Syntax
Show:
Summary
Declaration
from
nx_crypto_sha2.h:75
typedef
struct
NX_CRYPTO_SHA256_STRUCT
{
ULONG
nx_sha256_states
[
8
]
;
ULONG
nx_sha256_bit_count
[
2
]
;
UCHAR
nx_sha256_buffer
[
64
]
;
ULONG
nx_sha256_word_array
[
64
]
;
}
NX_CRYPTO_SHA256
;
Fields
Field
Declared as
NX_CRYPTO_SHA256_STRUCT::nx_sha256_states
ULONG
[
8
]
NX_CRYPTO_SHA256_STRUCT::nx_sha256_bit_count
ULONG
[
2
]
NX_CRYPTO_SHA256_STRUCT::nx_sha256_buffer
UCHAR
[
64
]
NX_CRYPTO_SHA256_STRUCT::nx_sha256_word_array
ULONG
[
64
]
Related Functions
Found 4 other functions taking a
NX_CRYPTO_SHA256_STRUCT
argument:
Function
_nx_crypto_sha256_update()
_nx_crypto_sha256_initialize()
_nx_crypto_sha256_digest_calculate()
_nx_crypto_sha256_process_buffer()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
NX_CRYPTO_SHA256_STRUCT
nx_crypto_sha2.h:75
}
NX_CRYPTO_SHA256
;
nx_crypto_sha2.h:90
NX_CRYPTO_SHA256
nx_sha256_hmac_context
;
nx_crypto_hmac_sha2.h:82
NX_CRYPTO_SHA256_HMAC_STRUCT
NX_CRYPTO_SHA256_HMAC_STRUCT::nx_sha256_hmac_context
sizeof
(
NX_CRYPTO_SHA256
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:572
sizeof
(
NX_CRYPTO_SHA256
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:586
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha256_initialize
(
NX_CRYPTO_SHA256
*
context
,
UINT
algorithm
)
nx_crypto_sha2.c:98
_nx_crypto_sha256_initialize()
_nx_crypto_sha256_initialize()::context
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha256_update
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
*
input_ptr
,
UINT
input_length
)
nx_crypto_sha2.c:189
_nx_crypto_sha256_update()
_nx_crypto_sha256_update()::context
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha256_digest_calculate
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
*
digest
,
UINT
algorithm
)
nx_crypto_sha2.c:319
_nx_crypto_sha256_digest_calculate()
_nx_crypto_sha256_digest_calculate()::context
NX_CRYPTO_KEEP
VOID
_nx_crypto_sha256_process_buffer
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
buffer
[
64
]
)
nx_crypto_sha2.c:437
_nx_crypto_sha256_process_buffer()
_nx_crypto_sha256_process_buffer()::context
if
(
crypto_metadata_size
<
sizeof
(
NX_CRYPTO_SHA256
)
)
nx_crypto_sha2.c:655
_nx_crypto_method_sha256_init()
NX_CRYPTO_SHA256
*
ctx
;
nx_crypto_sha2.c:793
_nx_crypto_method_sha256_operation()
if
(
crypto_metadata_size
<
sizeof
(
NX_CRYPTO_SHA256
)
)
nx_crypto_sha2.c:815
_nx_crypto_method_sha256_operation()
ctx
=
(
NX_CRYPTO_SHA256
*
)
crypto_metadata
;
nx_crypto_sha2.c:820
_nx_crypto_method_sha256_operation()
_nx_crypto_sha256_initialize
(
(
NX_CRYPTO_SHA256
*
)
crypto_metadata
,
method
->
nx_crypto_algorithm
)
;
nx_crypto_sha2.c:833
_nx_crypto_method_sha256_operation()
_nx_crypto_sha256_update
(
(
NX_CRYPTO_SHA256
*
)
crypto_metadata
,
input
,
input_length_in_byte
)
;
nx_crypto_sha2.c:837
_nx_crypto_method_sha256_operation()
_nx_crypto_sha256_digest_calculate
(
(
NX_CRYPTO_SHA256
*
)
crypto_metadata
,
output
,
nx_crypto_sha2.c:849
_nx_crypto_method_sha256_operation()
}
NX_CRYPTO_SHA256
;
nx_crypto_sha2.h:90
NX_CRYPTO_SHA256
UINT
_nx_crypto_sha256_initialize
(
NX_CRYPTO_SHA256
*
context
,
UINT
algorithm
)
;
nx_crypto_sha2.h:93
_nx_crypto_sha256_initialize()
_nx_crypto_sha256_initialize()::context
UINT
_nx_crypto_sha256_update
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
*
input_ptr
,
UINT
input_length
)
;
nx_crypto_sha2.h:94
_nx_crypto_sha256_update()
_nx_crypto_sha256_update()::context
UINT
_nx_crypto_sha256_digest_calculate
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
*
digest
,
UINT
algorithm
)
;
nx_crypto_sha2.h:95
_nx_crypto_sha256_digest_calculate()
_nx_crypto_sha256_digest_calculate()::context
VOID
_nx_crypto_sha256_process_buffer
(
NX_CRYPTO_SHA256
*
context
,
UCHAR
buffer
[
64
]
)
;
nx_crypto_sha2.h:96
_nx_crypto_sha256_process_buffer()
_nx_crypto_sha256_process_buffer()::context
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
Instance
Scope
Location
Project
_nx_crypto_sha256_initialize()::context
_nx_crypto_sha256_initialize()
nx_crypto_sha2.h:93
_nx_crypto_sha256_update()::context
_nx_crypto_sha256_update()
nx_crypto_sha2.h:94
_nx_crypto_sha256_digest_calculate()::context
_nx_crypto_sha256_digest_calculate()
nx_crypto_sha2.h:95
_nx_crypto_sha256_process_buffer()::context
_nx_crypto_sha256_process_buffer()
nx_crypto_sha2.h:96
NX_CRYPTO_SHA256_HMAC_STRUCT::nx_sha256_hmac_context
NX_CRYPTO_SHA256_HMAC_STRUCT
nx_crypto_hmac_sha2.h:82
_nx_crypto_sha256_initialize()::context
_nx_crypto_sha256_initialize()
nx_crypto_sha2.c:98
_nx_crypto_sha256_update()::context
_nx_crypto_sha256_update()
nx_crypto_sha2.c:189
_nx_crypto_sha256_digest_calculate()::context
_nx_crypto_sha256_digest_calculate()
nx_crypto_sha2.c:319
_nx_crypto_sha256_process_buffer()::context
_nx_crypto_sha256_process_buffer()
nx_crypto_sha2.c:437
Lifecycle
from
examples
All items filtered out
All items filtered out