NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count is only used within netxduo.
 
Symbols
loading...
Files
loading...
CodeScopeSTM32 Libraries and SamplesnetxduoNX_CRYPTO_MD5_STRUCT::nx_md5_bit_count

NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count field

Syntax

ULONG nx_md5_bit_count[2];

References

LocationReferrerText
nx_crypto_md5.h:103
ULONG nx_md5_bit_count[2]; /* Contains the 64-bit total bit */
nx_crypto_md5.c:149_nx_crypto_md5_initialize()
context -> nx_md5_bit_count[0] = 0; /* Clear the lower 32-bits of the count */
nx_crypto_md5.c:150_nx_crypto_md5_initialize()
context -> nx_md5_bit_count[1] = 0; /* Clear the upper 32-bits of the count */
nx_crypto_md5.c:230_nx_crypto_md5_update()
current_bytes = (context -> nx_md5_bit_count[0] >> 3) & 0x3F;
nx_crypto_md5.c:236_nx_crypto_md5_update()
context -> nx_md5_bit_count[0] += (input_length << 3);
nx_crypto_md5.c:239_nx_crypto_md5_update()
if (context -> nx_md5_bit_count[0] < (input_length << 3))
nx_crypto_md5.c:242_nx_crypto_md5_update()
context -> nx_md5_bit_count[1]++;
nx_crypto_md5.c:246_nx_crypto_md5_update()
context -> nx_md5_bit_count[1] += (input_length >> 29);
nx_crypto_md5.c:349_nx_crypto_md5_digest_calculate()
bit_count_string[0] = (UCHAR)context -> nx_md5_bit_count[0];
nx_crypto_md5.c:350_nx_crypto_md5_digest_calculate()
bit_count_string[1] = (UCHAR)(context -> nx_md5_bit_count[0] >> 8);
nx_crypto_md5.c:351_nx_crypto_md5_digest_calculate()
bit_count_string[2] = (UCHAR)(context -> nx_md5_bit_count[0] >> 16);
nx_crypto_md5.c:352_nx_crypto_md5_digest_calculate()
bit_count_string[3] = (UCHAR)(context -> nx_md5_bit_count[0] >> 24);
nx_crypto_md5.c:353_nx_crypto_md5_digest_calculate()
bit_count_string[4] = (UCHAR)context -> nx_md5_bit_count[1];
nx_crypto_md5.c:354_nx_crypto_md5_digest_calculate()
bit_count_string[5] = (UCHAR)(context -> nx_md5_bit_count[1] >> 8);
nx_crypto_md5.c:355_nx_crypto_md5_digest_calculate()
bit_count_string[6] = (UCHAR)(context -> nx_md5_bit_count[1] >> 16);
nx_crypto_md5.c:356_nx_crypto_md5_digest_calculate()
bit_count_string[7] = (UCHAR)(context -> nx_md5_bit_count[1] >> 24);
nx_crypto_md5.c:359_nx_crypto_md5_digest_calculate()
current_byte_count = (context -> nx_md5_bit_count[0] >> 3) & 0x3F;

Data Use

Functions reading NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count
NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count
Type of NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count
NX_CRYPTO_MD5_STRUCT::nx_md5_bit_count
all items filtered out