Home
last modified time | relevance | path

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

/NetX-Duo-v6.2.1/addons/http/
Dnxd_http_client.h239 …art(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
240 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
246 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
247 …r, NXD_ADDRESS *ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
259 …art(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, 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 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
262 …ient_ptr, ULONG ip_address, CHAR *resource, UINT resource_length, CHAR *input_ptr, UINT input_size…
273 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
274 …HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *resource, CHAR *input_ptr, UINT input_size…
[all …]
Dnxd_http_client.c511 …tp_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, in _nxe_http_client_get_start() argument
527 status = _nx_http_client_get_start(client_ptr, ip_address, resource, input_ptr, input_size, in _nxe_http_client_get_start()
536 NX_PARAMETER_NOT_USED(input_ptr); in _nxe_http_client_get_start()
597 … CHAR *input_ptr, UINT input_size, CHAR *username, UINT username_length, in _nxe_http_client_get_start_extended() argument
614 input_ptr, input_size, username, username_length, in _nxe_http_client_get_start_extended()
624 NX_PARAMETER_NOT_USED(input_ptr); in _nxe_http_client_get_start_extended()
686 …tp_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, CHAR *input_ptr, in _nx_http_client_get_start() argument
699 … status = _nxd_http_client_get_start(client_ptr, &server_ip_addr, resource, input_ptr, input_size, in _nx_http_client_get_start()
707 NX_PARAMETER_NOT_USED(input_ptr); in _nx_http_client_get_start()
774 … CHAR *input_ptr, UINT input_size, CHAR *username, UINT username_length, in _nx_http_client_get_start_extended() argument
[all …]
/NetX-Duo-v6.2.1/addons/websocket/
Dnx_sha1.c183 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length) in _nx_sha1_update() argument
227 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes… in _nx_sha1_update()
234 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
245 _nx_sha1_process_buffer(context, input_ptr); in _nx_sha1_update()
249 input_ptr = input_ptr + 64; in _nx_sha1_update()
258 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, input_length); /*… in _nx_sha1_update()
Dnx_sha1.h111 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_sha1.c183 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length) in _nx_sha1_update() argument
227 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes… in _nx_sha1_update()
234 input_ptr = input_ptr + needed_fill_bytes; in _nx_sha1_update()
245 _nx_sha1_process_buffer(context, input_ptr); in _nx_sha1_update()
249 input_ptr = input_ptr + 64; in _nx_sha1_update()
258 …memcpy((void *) &(context -> nx_sha1_buffer[current_bytes]), (void *) input_ptr, input_length); /*… in _nx_sha1_update()
Dnx_sha1.h111 UINT _nx_sha1_update(NX_SHA1 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_sha1.c188 NX_CRYPTO_KEEP UINT _nx_crypto_sha1_update(NX_CRYPTO_SHA1 *context, UCHAR *input_ptr, UINT input_l… in _nx_crypto_sha1_update() argument
236 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, needed_fi… in _nx_crypto_sha1_update()
243 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha1_update()
254 _nx_crypto_sha1_process_buffer(context, input_ptr); in _nx_crypto_sha1_update()
258 input_ptr = input_ptr + 64; in _nx_crypto_sha1_update()
267 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha1_buffer[current_bytes]), (void *)input_ptr, input_len… in _nx_crypto_sha1_update()
Dnx_crypto_sha5.c236 NX_CRYPTO_KEEP UINT _nx_crypto_sha512_update(NX_CRYPTO_SHA512 *context, UCHAR *input_ptr, UINT inpu… in _nx_crypto_sha512_update() argument
281 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, (UINT)n… in _nx_crypto_sha512_update()
288 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha512_update()
299 _nx_crypto_sha512_process_buffer(context, input_ptr); in _nx_crypto_sha512_update()
303 input_ptr = input_ptr + NX_CRYPTO_SHA512_BLOCK_SIZE_IN_BYTES; in _nx_crypto_sha512_update()
311 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha512_buffer[current_bytes]), (void *)input_ptr, input_l… in _nx_crypto_sha512_update()
Dnx_crypto_md5.c208 NX_CRYPTO_KEEP UINT _nx_crypto_md5_update(NX_CRYPTO_MD5 *context, UCHAR *input_ptr, UINT input_len… in _nx_crypto_md5_update() argument
254 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, needed_fil… in _nx_crypto_md5_update()
261 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_md5_update()
272 _nx_crypto_md5_process_buffer(context, input_ptr); in _nx_crypto_md5_update()
276 input_ptr = input_ptr + 64; in _nx_crypto_md5_update()
285 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_md5_buffer[current_bytes]), (void *)input_ptr, input_leng… in _nx_crypto_md5_update()
Dnx_crypto_sha2.c188 NX_CRYPTO_KEEP UINT _nx_crypto_sha256_update(NX_CRYPTO_SHA256 *context, UCHAR *input_ptr, UINT inpu… in _nx_crypto_sha256_update() argument
233 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, needed_… in _nx_crypto_sha256_update()
240 input_ptr = input_ptr + needed_fill_bytes; in _nx_crypto_sha256_update()
251 _nx_crypto_sha256_process_buffer(context, input_ptr); in _nx_crypto_sha256_update()
255 input_ptr = input_ptr + 64; in _nx_crypto_sha256_update()
263 …NX_CRYPTO_MEMCPY((void *)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, input_l… in _nx_crypto_sha256_update()
Dnx_crypto_hmac.c75 UCHAR *input_ptr, UINT input_length, in _nx_crypto_hmac() argument
82 _nx_crypto_hmac_update(hmac_metadata, input_ptr, input_length); in _nx_crypto_hmac()
242 NX_CRYPTO_KEEP UINT _nx_crypto_hmac_update(NX_CRYPTO_HMAC *hmac_metadata, UCHAR *input_ptr, UINT in… in _nx_crypto_hmac_update() argument
246 hmac_metadata -> crypto_update(hmac_metadata -> context, input_ptr, input_length); in _nx_crypto_hmac_update()
/NetX-Duo-v6.2.1/common/src/
Dnx_md5.c200 UINT _nx_md5_update(NX_MD5 *context, UCHAR *input_ptr, UINT input_length) in _nx_md5_update() argument
244 …memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes)… in _nx_md5_update()
251 input_ptr = input_ptr + needed_fill_bytes; in _nx_md5_update()
262 _nx_md5_process_buffer(context, input_ptr); in _nx_md5_update()
266 input_ptr = input_ptr + 64; in _nx_md5_update()
275 …memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, input_length); /* … in _nx_md5_update()
/NetX-Duo-v6.2.1/crypto_libraries/inc/
Dnx_crypto_hmac.h84 UCHAR *input_ptr, UINT input_length,
90 UINT _nx_crypto_hmac_update(NX_CRYPTO_HMAC *crypto_matadata, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_md5.h118 UINT _nx_crypto_md5_update(NX_CRYPTO_MD5 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha2.h93 UINT _nx_crypto_sha256_update(NX_CRYPTO_SHA256 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha1.h124 UINT _nx_crypto_sha1_update(NX_CRYPTO_SHA1 *context, UCHAR *input_ptr, UINT input_length);
Dnx_crypto_sha5.h105 UINT _nx_crypto_sha512_update(NX_CRYPTO_SHA512 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.2.1/common/inc/
Dnx_md5.h109 UINT _nx_md5_update(NX_MD5 *context, UCHAR *input_ptr, UINT input_length);
/NetX-Duo-v6.2.1/test/regression/nx_secure_test/hash_clone/
Dnx_crypto_clone_cleanup_test.h45 UINT _nx_crypto_clone_cleanup_test_update(NX_CRYPTO_CLONE_CLEANUP_TEST *context, UCHAR *input_ptr, …
Dnx_crypto_clone_cleanup_test.c34 …clone_cleanup_test_update(NX_CRYPTO_CLONE_CLEANUP_TEST *context, UCHAR *input_ptr, UINT input_leng… in _nx_crypto_clone_cleanup_test_update() argument
54 …pto_sha256_update((NX_CRYPTO_SHA256 *)context -> nx_crypto_hash_metadata, input_ptr, input_length); in _nx_crypto_clone_cleanup_test_update()
/NetX-Duo-v6.2.1/addons/azure_iot/
Dnx_azure_iot_adu_agent.c74 UCHAR *input_ptr, ULONG input_size,
77 UCHAR *input_ptr, ULONG input_size,
3789 UCHAR *input_ptr, ULONG input_size, in nx_azure_iot_adu_agent_sha256_calculate() argument
3836 input_ptr, in nx_azure_iot_adu_agent_sha256_calculate()
3878 UCHAR *input_ptr, ULONG input_size, in nx_azure_iot_adu_agent_rs256_verify() argument
3958 input_ptr, input_size, in nx_azure_iot_adu_agent_rs256_verify()