Home
last modified time | relevance | path

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

/NetX-Duo-v6.3.0/addons/websocket/
Dnx_sha1.c188 ULONG needed_fill_bytes; in _nx_sha1_update() local
204 needed_fill_bytes = 64 - current_bytes; in _nx_sha1_update()
221 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_sha1_update()
228 …*) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_sha1_update()
234 input_length = input_length - needed_fill_bytes; in _nx_sha1_update()
235 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
/NetX-Duo-v6.3.0/addons/snmp/
Dnx_sha1.c188 ULONG needed_fill_bytes; in _nx_sha1_update() local
204 needed_fill_bytes = 64 - current_bytes; in _nx_sha1_update()
221 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_sha1_update()
228 …*) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_sha1_update()
234 input_length = input_length - needed_fill_bytes; in _nx_sha1_update()
235 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_sha1.c193 ULONG needed_fill_bytes; in _nx_crypto_sha1_update() local
213 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_sha1_update()
230 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha1_update()
237 …d *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_sha1_update()
243 input_length = input_length - needed_fill_bytes; in _nx_crypto_sha1_update()
244 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha1_update()
Dnx_crypto_sha5.c240 ULONG64 needed_fill_bytes; in _nx_crypto_sha512_update() local
259 needed_fill_bytes = NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES - current_bytes; in _nx_crypto_sha512_update()
276 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha512_update()
282 …ntext -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, (UINT)needed_fill_bytes); /* Use cas… in _nx_crypto_sha512_update()
288 input_length = (UINT)(input_length - needed_fill_bytes); in _nx_crypto_sha512_update()
289 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha512_update()
Dnx_crypto_md5.c213 ULONG needed_fill_bytes; in _nx_crypto_md5_update() local
233 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_md5_update()
249 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_md5_update()
255 …id *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_md5_update()
261 input_length = input_length - needed_fill_bytes; in _nx_crypto_md5_update()
262 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_md5_update()
Dnx_crypto_sha2.c192 ULONG needed_fill_bytes; in _nx_crypto_sha256_update() local
211 needed_fill_bytes = 64 - current_bytes; in _nx_crypto_sha256_update()
228 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha256_update()
234 …*)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, needed_fill_bytes); /* Use cas… in _nx_crypto_sha256_update()
240 input_length = input_length - needed_fill_bytes; in _nx_crypto_sha256_update()
241 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha256_update()
/NetX-Duo-v6.3.0/common/src/
Dnx_md5.c205 ULONG needed_fill_bytes; in _nx_md5_update() local
221 needed_fill_bytes = 64 - current_bytes; in _nx_md5_update()
238 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_md5_update()
245 … *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use cas… in _nx_md5_update()
251 input_length = input_length - needed_fill_bytes; in _nx_md5_update()
252 input_ptr = input_ptr + needed_fill_bytes; in _nx_md5_update()