Home
last modified time | relevance | path

Searched refs:needed_fill_bytes (Results 1 – 7 of 7) sorted by relevance

/NetX-Duo-v6.2.1/addons/websocket/
Dnx_sha1.c187 ULONG needed_fill_bytes; in _nx_sha1_update() local
203 needed_fill_bytes = 64 - current_bytes; in _nx_sha1_update()
220 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_sha1_update()
227 …*) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_sha1_update()
233 input_length = input_length - needed_fill_bytes; in _nx_sha1_update()
234 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_sha1.c187 ULONG needed_fill_bytes; in _nx_sha1_update() local
203 needed_fill_bytes = 64 - current_bytes; in _nx_sha1_update()
220 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_sha1_update()
227 …*) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_sha1_update()
233 input_length = input_length - needed_fill_bytes; in _nx_sha1_update()
234 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_sha1.c192 ULONG needed_fill_bytes; in _nx_crypto_sha1_update() local
212 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_sha1_update()
229 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha1_update()
236 …d *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_sha1_update()
242 input_length = input_length - needed_fill_bytes; in _nx_crypto_sha1_update()
243 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha1_update()
Dnx_crypto_sha5.c239 ULONG64 needed_fill_bytes; in _nx_crypto_sha512_update() local
258 needed_fill_bytes = NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES - current_bytes; in _nx_crypto_sha512_update()
275 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha512_update()
281 …ntext -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, (UINT)needed_fill_bytes); /* Use cas… in _nx_crypto_sha512_update()
287 input_length = (UINT)(input_length - needed_fill_bytes); in _nx_crypto_sha512_update()
288 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha512_update()
Dnx_crypto_md5.c212 ULONG needed_fill_bytes; in _nx_crypto_md5_update() local
232 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_md5_update()
248 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_md5_update()
254 …id *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_md5_update()
260 input_length = input_length - needed_fill_bytes; in _nx_crypto_md5_update()
261 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_md5_update()
Dnx_crypto_sha2.c191 ULONG needed_fill_bytes; in _nx_crypto_sha256_update() local
210 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_sha256_update()
227 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha256_update()
233 …*)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_sha256_update()
239 input_length = input_length - needed_fill_bytes; in _nx_crypto_sha256_update()
240 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha256_update()
/NetX-Duo-v6.2.1/common/src/
Dnx_md5.c204 ULONG needed_fill_bytes; in _nx_md5_update() local
220 needed_fill_bytes = 64 - current_bytes; in _nx_md5_update()
237 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_md5_update()
244 … *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_md5_update()
250 input_length = input_length - needed_fill_bytes; in _nx_md5_update()
251 input_ptr = input_ptr + needed_fill_bytes; in _nx_md5_update()