Home
last modified time | relevance | path

Searched refs:input_ptr (Results 1 – 19 of 19) sorted by relevance

/NetX-Duo-v6.3.0/addons/websocket/
Dnx_sha1.c184 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length) in _nx_sha1_update() argument
228 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes… in _nx_sha1_update()
235 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
246 _nx_sha1_process_buffer(context, input_ptr); in _nx_sha1_update()
250 input_ptr = input_ptr + 64; in _nx_sha1_update()
259 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, input_length); /*… in _nx_sha1_update()
Dnx_sha1.h112 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.3.0/addons/snmp/
Dnx_sha1.c184 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length) in _nx_sha1_update() argument
228 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes… in _nx_sha1_update()
235 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
246 _nx_sha1_process_buffer(context, input_ptr); in _nx_sha1_update()
250 input_ptr = input_ptr + 64; in _nx_sha1_update()
259 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, input_length); /*… in _nx_sha1_update()
Dnx_sha1.h112 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.3.0/addons/http/
Dnxd_http_client.h240 …art(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
241 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
247 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
248 …r, NXD_ADDRESS *ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
260 …art(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
261 …art(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
262 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
263 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
274 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
275 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
[all …]
Dnxd_http_client.c512 …tp_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, in _nxe_http_client_get_start() argument
528 status = _nx_http_client_get_start(client_ptr, ip_address, resource, input_ptr, input_size, in _nxe_http_client_get_start()
537 NX_PARAMETER_NOT_USED(input_ptr); in _nxe_http_client_get_start()
598 … CHAR *input_ptr, UINT input_size, CHAR *username, UINT username_length, in _nxe_http_client_get_start_extended() argument
615 input_ptr, input_size, username, username_length, in _nxe_http_client_get_start_extended()
625 NX_PARAMETER_NOT_USED(input_ptr); in _nxe_http_client_get_start_extended()
687 …tp_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, in _nx_http_client_get_start() argument
700 … status = _nxd_http_client_get_start(client_ptr, &server_ip_addr, resource, input_ptr, input_size, in _nx_http_client_get_start()
708 NX_PARAMETER_NOT_USED(input_ptr); in _nx_http_client_get_start()
775 … CHAR *input_ptr, UINT input_size, CHAR *username, UINT username_length, in _nx_http_client_get_start_extended() argument
[all …]
/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_sha1.c189 NX_CRYPTO_KEEP UINT _nx_crypto_sha1_update(NX_CRYPTO_SHA1 *context, UCHAR *input_ptr, UINT input_l… in _nx_crypto_sha1_update() argument
237 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, needed_fi… in _nx_crypto_sha1_update()
244 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha1_update()
255 _nx_crypto_sha1_process_buffer(context, input_ptr); in _nx_crypto_sha1_update()
259 input_ptr = input_ptr + 64; in _nx_crypto_sha1_update()
268 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, input_len… in _nx_crypto_sha1_update()
Dnx_crypto_sha5.c237 NX_CRYPTO_KEEP UINT _nx_crypto_sha512_update(NX_CRYPTO_SHA512 *context, UCHAR *input_ptr, UINT inpu… in _nx_crypto_sha512_update() argument
282 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, (UINT)n… in _nx_crypto_sha512_update()
289 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha512_update()
300 _nx_crypto_sha512_process_buffer(context, input_ptr); in _nx_crypto_sha512_update()
304 input_ptr = input_ptr + NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES; in _nx_crypto_sha512_update()
312 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, input_l… in _nx_crypto_sha512_update()
Dnx_crypto_md5.c209 NX_CRYPTO_KEEP UINT _nx_crypto_md5_update(NX_CRYPTO_MD5 *context, UCHAR *input_ptr, UINT input_len… in _nx_crypto_md5_update() argument
255 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, needed_fil… in _nx_crypto_md5_update()
262 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_md5_update()
273 _nx_crypto_md5_process_buffer(context, input_ptr); in _nx_crypto_md5_update()
277 input_ptr = input_ptr + 64; in _nx_crypto_md5_update()
286 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, input_leng… in _nx_crypto_md5_update()
Dnx_crypto_sha2.c189 NX_CRYPTO_KEEP UINT _nx_crypto_sha256_update(NX_CRYPTO_SHA256 *context, UCHAR *input_ptr, UINT inpu… in _nx_crypto_sha256_update() argument
234 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, needed_… in _nx_crypto_sha256_update()
241 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha256_update()
252 _nx_crypto_sha256_process_buffer(context, input_ptr); in _nx_crypto_sha256_update()
256 input_ptr = input_ptr + 64; in _nx_crypto_sha256_update()
264 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, input_l… in _nx_crypto_sha256_update()
Dnx_crypto_hmac.c76 UCHAR *input_ptr, UINT input_length, in _nx_crypto_hmac() argument
83 _nx_crypto_hmac_update(hmac_metadata, input_ptr, input_length); in _nx_crypto_hmac()
243 NX_CRYPTO_KEEP UINT _nx_crypto_hmac_update(NX_CRYPTO_HMAC *hmac_metadata, UCHAR *input_ptr, UINT in… in _nx_crypto_hmac_update() argument
247 hmac_metadata -> crypto_update(hmac_metadata -> context, input_ptr, input_length); in _nx_crypto_hmac_update()
/NetX-Duo-v6.3.0/common/src/
Dnx_md5.c201 UINT _nx_md5_update(NX_MD5 *context, UCHAR *input_ptr, UINT input_length) in _nx_md5_update() argument
245 …memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes)… in _nx_md5_update()
252 input_ptr = input_ptr + needed_fill_bytes; in _nx_md5_update()
263 _nx_md5_process_buffer(context, input_ptr); in _nx_md5_update()
267 input_ptr = input_ptr + 64; in _nx_md5_update()
276 …memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, input_length); /* … in _nx_md5_update()
/NetX-Duo-v6.3.0/crypto_libraries/inc/
Dnx_crypto_hmac.h85 UCHAR *input_ptr, UINT input_length,
91 UINT _nx_crypto_hmac_update(NX_CRYPTO_HMAC *crypto_matadata, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_md5.h119 UINT _nx_crypto_md5_update(NX_CRYPTO_MD5 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha1.h125 UINT _nx_crypto_sha1_update(NX_CRYPTO_SHA1 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha2.h94 UINT _nx_crypto_sha256_update(NX_CRYPTO_SHA256 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha5.h106 UINT _nx_crypto_sha512_update(NX_CRYPTO_SHA512 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.3.0/common/inc/
Dnx_md5.h110 UINT _nx_md5_update(NX_MD5 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.3.0/addons/azure_iot/
Dnx_azure_iot_adu_agent.c75 UCHAR *input_ptr, ULONG input_size,
78 UCHAR *input_ptr, ULONG input_size,
3790 UCHAR *input_ptr, ULONG input_size, in nx_azure_iot_adu_agent_sha256_calculate() argument
3837 input_ptr, in nx_azure_iot_adu_agent_sha256_calculate()
3879 UCHAR *input_ptr, ULONG input_size, in nx_azure_iot_adu_agent_rs256_verify() argument
3959 input_ptr, input_size, in nx_azure_iot_adu_agent_rs256_verify()