netxduo
NX_CRYPTO_SHA512
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_SHA512
NX_CRYPTO_SHA512 struct
Syntax
Show:
Summary
Declaration
from
nx_crypto_sha5.h:86
typedef
struct
NX_CRYPTO_SHA512_STRUCT
{
ULONG64
nx_sha512_states
[
8
]
;
ULONG64
nx_sha512_bit_count
[
2
]
;
UCHAR
nx_sha512_buffer
[
NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES
]
;
ULONG64
nx_sha512_word_array
[
128
]
;
}
NX_CRYPTO_SHA512
;
Fields
Field
Declared as
NX_CRYPTO_SHA512_STRUCT::nx_sha512_states
ULONG64
[
8
]
NX_CRYPTO_SHA512_STRUCT::nx_sha512_bit_count
ULONG64
[
2
]
NX_CRYPTO_SHA512_STRUCT::nx_sha512_buffer
UCHAR
[
NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES
]
NX_CRYPTO_SHA512_STRUCT::nx_sha512_word_array
ULONG64
[
128
]
Related Functions
Found 4 other functions taking a
NX_CRYPTO_SHA512_STRUCT
argument:
Function
_nx_crypto_sha512_update()
_nx_crypto_sha512_initialize()
_nx_crypto_sha512_digest_calculate()
_nx_crypto_sha512_process_buffer()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
NX_CRYPTO_SHA512_STRUCT
nx_crypto_sha5.h:86
}
NX_CRYPTO_SHA512
;
nx_crypto_sha5.h:102
NX_CRYPTO_SHA512
nx_sha512_hmac_context
;
nx_crypto_hmac_sha5.h:82
NX_CRYPTO_SHA512_HMAC_STRUCT
NX_CRYPTO_SHA512_HMAC_STRUCT::nx_sha512_hmac_context
sizeof
(
NX_CRYPTO_SHA512
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:600
sizeof
(
NX_CRYPTO_SHA512
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:614
sizeof
(
NX_CRYPTO_SHA512
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:628
sizeof
(
NX_CRYPTO_SHA512
)
,
/* Metadata size in bytes */
nx_crypto_methods.c:642
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha512_initialize
(
NX_CRYPTO_SHA512
*
context
,
UINT
algorithm
)
nx_crypto_sha5.c:118
_nx_crypto_sha512_initialize()
_nx_crypto_sha512_initialize()::context
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha512_update
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
input_ptr
,
UINT
input_length
)
nx_crypto_sha5.c:237
_nx_crypto_sha512_update()
_nx_crypto_sha512_update()::context
NX_CRYPTO_KEEP
UINT
_nx_crypto_sha512_digest_calculate
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
digest
,
UINT
algorithm
)
nx_crypto_sha5.c:365
_nx_crypto_sha512_digest_calculate()
_nx_crypto_sha512_digest_calculate()::context
NX_CRYPTO_KEEP
VOID
_nx_crypto_sha512_process_buffer
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
buffer
)
nx_crypto_sha5.c:501
_nx_crypto_sha512_process_buffer()
_nx_crypto_sha512_process_buffer()::context
if
(
crypto_metadata_size
<
sizeof
(
NX_CRYPTO_SHA512
)
)
nx_crypto_sha5.c:647
_nx_crypto_method_sha512_init()
NX_CRYPTO_SHA512
*
ctx
;
nx_crypto_sha5.c:786
_nx_crypto_method_sha512_operation()
if
(
crypto_metadata_size
<
sizeof
(
NX_CRYPTO_SHA512
)
)
nx_crypto_sha5.c:808
_nx_crypto_method_sha512_operation()
ctx
=
(
NX_CRYPTO_SHA512
*
)
crypto_metadata
;
nx_crypto_sha5.c:813
_nx_crypto_method_sha512_operation()
_nx_crypto_sha512_initialize
(
(
NX_CRYPTO_SHA512
*
)
crypto_metadata
,
method
->
nx_crypto_algorithm
)
;
nx_crypto_sha5.c:834
_nx_crypto_method_sha512_operation()
_nx_crypto_sha512_update
(
(
NX_CRYPTO_SHA512
*
)
crypto_metadata
,
input
,
input_length_in_byte
)
;
nx_crypto_sha5.c:838
_nx_crypto_method_sha512_operation()
_nx_crypto_sha512_digest_calculate
(
(
NX_CRYPTO_SHA512
*
)
crypto_metadata
,
output
,
method
->
nx_crypto_algorithm
)
;
nx_crypto_sha5.c:849
_nx_crypto_method_sha512_operation()
}
NX_CRYPTO_SHA512
;
nx_crypto_sha5.h:102
NX_CRYPTO_SHA512
UINT
_nx_crypto_sha512_initialize
(
NX_CRYPTO_SHA512
*
context
,
UINT
algorithm
)
;
nx_crypto_sha5.h:105
_nx_crypto_sha512_initialize()
_nx_crypto_sha512_initialize()::context
UINT
_nx_crypto_sha512_update
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
input_ptr
,
UINT
input_length
)
;
nx_crypto_sha5.h:106
_nx_crypto_sha512_update()
_nx_crypto_sha512_update()::context
UINT
_nx_crypto_sha512_digest_calculate
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
digest
,
UINT
algorithm
)
;
nx_crypto_sha5.h:107
_nx_crypto_sha512_digest_calculate()
_nx_crypto_sha512_digest_calculate()::context
VOID
_nx_crypto_sha512_process_buffer
(
NX_CRYPTO_SHA512
*
context
,
UCHAR
*
buffer
)
;
nx_crypto_sha5.h:108
_nx_crypto_sha512_process_buffer()
_nx_crypto_sha512_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_sha512_initialize()::context
_nx_crypto_sha512_initialize()
nx_crypto_sha5.h:105
_nx_crypto_sha512_update()::context
_nx_crypto_sha512_update()
nx_crypto_sha5.h:106
_nx_crypto_sha512_digest_calculate()::context
_nx_crypto_sha512_digest_calculate()
nx_crypto_sha5.h:107
_nx_crypto_sha512_process_buffer()::context
_nx_crypto_sha512_process_buffer()
nx_crypto_sha5.h:108
NX_CRYPTO_SHA512_HMAC_STRUCT::nx_sha512_hmac_context
NX_CRYPTO_SHA512_HMAC_STRUCT
nx_crypto_hmac_sha5.h:82
_nx_crypto_sha512_initialize()::context
_nx_crypto_sha512_initialize()
nx_crypto_sha5.c:118
_nx_crypto_sha512_update()::context
_nx_crypto_sha512_update()
nx_crypto_sha5.c:237
_nx_crypto_sha512_digest_calculate()::context
_nx_crypto_sha512_digest_calculate()
nx_crypto_sha5.c:365
_nx_crypto_sha512_process_buffer()::context
_nx_crypto_sha512_process_buffer()
nx_crypto_sha5.c:501
Lifecycle
from
examples
All items filtered out
All items filtered out