Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 16 of 16) sorted by relevance

/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_3des.c134 UCHAR destination[8], UINT length) in _nx_crypto_3des_encrypt()
139 …_nx_crypto_des_encrypt(&context -> des_1, source, destination, length); /* lgtm[cpp/weak-cryptogra… in _nx_crypto_3des_encrypt()
141 …_nx_crypto_des_decrypt(&context -> des_2, destination, destination, length); /* lgtm[cpp/weak-cryp… in _nx_crypto_3des_encrypt()
143 …_nx_crypto_des_encrypt(&context -> des_3, destination, destination, length); /* lgtm[cpp/weak-cryp… in _nx_crypto_3des_encrypt()
200 UCHAR destination[8], UINT length) in _nx_crypto_3des_decrypt()
208 …_nx_crypto_des_decrypt(&context -> des_3, source, destination, length); /* lgtm[cpp/weak-cryptogra… in _nx_crypto_3des_decrypt()
210 …_nx_crypto_des_encrypt(&context -> des_2, destination, destination, length); /* lgtm[cpp/weak-cryp… in _nx_crypto_3des_decrypt()
212 …_nx_crypto_des_decrypt(&context -> des_1, destination, destination, length); /* lgtm[cpp/weak-cryp… in _nx_crypto_3des_decrypt()
Dnx_crypto_des.c363 … _nx_crypto_des_encrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destination[8], UINT length) in _nx_crypto_des_encrypt()
368 …_nx_crypto_des_process_block(source, destination, context -> nx_des_encryption_keys); /* lgtm[cpp/… in _nx_crypto_des_encrypt()
425 … _nx_crypto_des_decrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destination[8], UINT length) in _nx_crypto_des_decrypt()
430 …_nx_crypto_des_process_block(source, destination, context -> nx_des_decryption_keys); /* lgtm[cpp/… in _nx_crypto_des_decrypt()
482 NX_CRYPTO_KEEP VOID _nx_crypto_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys… in _nx_crypto_des_process_block()
556 destination[0] = (UCHAR)(right >> 24); in _nx_crypto_des_process_block()
557 destination[1] = (UCHAR)(right >> 16); in _nx_crypto_des_process_block()
558 destination[2] = (UCHAR)(right >> 8); in _nx_crypto_des_process_block()
559 destination[3] = (UCHAR)(right); in _nx_crypto_des_process_block()
560 destination[4] = (UCHAR)(left >> 24); in _nx_crypto_des_process_block()
[all …]
Dnx_crypto_huge_number.c1664 HN_UBASE *destination; in _nx_crypto_huge_number_setup() local
1698 destination = number -> nx_crypto_huge_number_data + num_words - 1; in _nx_crypto_huge_number_setup()
1723 *destination = word; in _nx_crypto_huge_number_setup()
1724 destination--; in _nx_crypto_huge_number_setup()
1737 *destination = word; in _nx_crypto_huge_number_setup()
1738 destination--; in _nx_crypto_huge_number_setup()
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_des.c353 UINT _nx_des_encrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]) in _nx_des_encrypt()
361 _nx_des_process_block(source, destination, context -> nx_des_encryption_keys); in _nx_des_encrypt()
411 UINT _nx_des_decrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]) in _nx_des_decrypt()
419 _nx_des_process_block(source, destination, context -> nx_des_decryption_keys); in _nx_des_decrypt()
470 VOID _nx_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]) in _nx_des_process_block()
544 destination[0] = (UCHAR) (right >> 24); in _nx_des_process_block()
545 destination[1] = (UCHAR) (right >> 16); in _nx_des_process_block()
546 destination[2] = (UCHAR) (right >> 8); in _nx_des_process_block()
547 destination[3] = (UCHAR) (right); in _nx_des_process_block()
548 destination[4] = (UCHAR) (left >> 24); in _nx_des_process_block()
[all …]
Dnx_des.h71 UINT _nx_des_encrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]);
72 UINT _nx_des_decrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]);
73 VOID _nx_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]);
/NetX-Duo-v6.2.1/test/regression/web_test/
Dhttp_digest_authentication.c7 VOID http_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in http_hex_ascii_convert() argument
26 destination[j++] = (CHAR)(digit + '0'); in http_hex_ascii_convert()
28 destination[j++] = (CHAR)(digit + 'a' - 10); in http_hex_ascii_convert()
35 destination[j++] = (CHAR)(digit + '0'); in http_hex_ascii_convert()
37 destination[j++] = (CHAR)(digit + 'a' - 10); in http_hex_ascii_convert()
41 destination[j] = (CHAR) NX_NULL; in http_hex_ascii_convert()
/NetX-Duo-v6.2.1/crypto_libraries/inc/
Dnx_crypto_des.h112 UINT _nx_crypto_des_encrypt(NX_CRYPTO_DES * context, UCHAR source[8], UCHAR destination[8], UINT le…
113 UINT _nx_crypto_des_decrypt(NX_CRYPTO_DES * context, UCHAR source[8], UCHAR destination[8], UINT le…
114 VOID _nx_crypto_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]);
Dnx_crypto_3des.h109 UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT …
110 UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT …
/NetX-Duo-v6.2.1/addons/http/
Dnxd_http_server.c5215 UINT _nx_http_server_retrieve_resource(NX_PACKET *packet_ptr, CHAR *destination, UINT max_size) in _nx_http_server_retrieve_resource() argument
5223 destination[0] = (CHAR) 0; in _nx_http_server_retrieve_resource()
5289 destination[i] = (CHAR)(*buffer_ptr - '0'); in _nx_http_server_retrieve_resource()
5291 destination[i] = (CHAR)(*buffer_ptr - 'a' + 10); in _nx_http_server_retrieve_resource()
5293 destination[i] = (CHAR)(*buffer_ptr - 'A' + 10); in _nx_http_server_retrieve_resource()
5298 destination[0] = (CHAR) 0; in _nx_http_server_retrieve_resource()
5301 destination[i] = (CHAR)(destination[i] << 4); in _nx_http_server_retrieve_resource()
5306 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - '0')); in _nx_http_server_retrieve_resource()
5308 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - 'a' + 10)); in _nx_http_server_retrieve_resource()
5310 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - 'A' + 10)); in _nx_http_server_retrieve_resource()
[all …]
Dnxd_http_server.h616 UINT _nx_http_server_retrieve_resource(NX_PACKET *packet_ptr, CHAR *destination, UINT max_si…
626 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
/NetX-Duo-v6.2.1/addons/web/
Dnx_web_http_server.c5609 …e_resource(NX_WEB_HTTP_SERVER *server_ptr, NX_PACKET *packet_ptr, CHAR *destination, UINT max_size) in _nx_web_http_server_retrieve_resource() argument
5620 destination[0] = (CHAR) 0; in _nx_web_http_server_retrieve_resource()
5722 destination[i] = (CHAR)(*buffer_ptr - '0'); in _nx_web_http_server_retrieve_resource()
5724 destination[i] = (CHAR)(*buffer_ptr - 'a' + 10); in _nx_web_http_server_retrieve_resource()
5726 destination[i] = (CHAR)(*buffer_ptr - 'A' + 10); in _nx_web_http_server_retrieve_resource()
5731 destination[0] = (CHAR) 0; in _nx_web_http_server_retrieve_resource()
5734 destination[i] = (CHAR)(destination[i] << 4); in _nx_web_http_server_retrieve_resource()
5739 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - '0')); in _nx_web_http_server_retrieve_resource()
5741 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - 'a' + 10)); in _nx_web_http_server_retrieve_resource()
5743 destination[i] = (CHAR)(destination[i] + (*buffer_ptr - 'A' + 10)); in _nx_web_http_server_retrieve_resource()
[all …]
Dnx_web_http_server.h612 …_resource(NX_WEB_HTTP_SERVER *server_ptr, NX_PACKET *packet_ptr, CHAR *destination, UINT max_size);
627 … _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
/NetX-Duo-v6.2.1/addons/pop3/
Dnxd_pop3_client.c2468 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_pop3_hex_ascii_convert() argument
2487 destination[j++] = (CHAR)(digit + '0'); in _nx_pop3_hex_ascii_convert()
2489 destination[j++] = (CHAR)(digit + 'a' - 10); in _nx_pop3_hex_ascii_convert()
2496 destination[j++] = (CHAR)(digit + '0'); in _nx_pop3_hex_ascii_convert()
2498 destination[j++] = (CHAR)(digit + 'a' - 10); in _nx_pop3_hex_ascii_convert()
2502 destination[j] = (CHAR) NX_NULL; in _nx_pop3_hex_ascii_convert()
Dnxd_pop3_client.h264 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
/NetX-Duo-v6.2.1/docs/
Drevision_history.txt181 Files are modified to fix the logic to update the destination cache:
355 Files are modified to move the destination and ND cache tables to IP structure:
594 …detach.c Optimized the logic for invalidating destination entries when th…
614 … Optimized the logic for invalidating destination entries when the router is invalid.
790 … The destination table is not updated when packet is invalid.
793 … nx_icmpv6_validate_neighbor_message.c Fixed type check for destination address
805 … nx_ip_route_find.c Fixed a bug that destination address is one of
816 Created destination table MUTEX.
837 … nxd_ipv6_interface_find.c Fixed a bug that destination address is one of
1480 …nx_icmpv6_dest_table_add.c Fixed a bug when destination table was full, inde…
[all …]
/NetX-Duo-v6.2.1/addons/azure_iot/docs/
Dazure_rtos_iot_json.md325 | bytes_copied [out] | Contains the number of bytes written to the destination which denote the len…