Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 25) sorted by relevance

/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()
479 …left = (((ULONG) source[0]) << 24) | (((ULONG) source[1]) << 16) | (((ULONG) source[2]) << 8) | (… in _nx_des_process_block()
480 …right = (((ULONG) source[4]) << 24) | (((ULONG) source[5]) << 16) | (((ULONG) source[6]) << 8) | … in _nx_des_process_block()
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/crypto_libraries/src/
Dnx_crypto_des.c363 NX_CRYPTO_KEEP UINT _nx_crypto_des_encrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destinat… 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_KEEP UINT _nx_crypto_des_decrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destinat… 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()
491 …left = (((ULONG)source[0]) << 24) | (((ULONG)source[1]) << 16) | (((ULONG)source[2]) << 8) | ((UL… in _nx_crypto_des_process_block()
492 …right = (((ULONG)source[4]) << 24) | (((ULONG)source[5]) << 16) | (((ULONG)source[6]) << 8) | ((U… in _nx_crypto_des_process_block()
Dnx_crypto_3des.c133 NX_CRYPTO_KEEP UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES *context, UCHAR source[8], 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()
199 NX_CRYPTO_KEEP UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES *context, UCHAR source[8], 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()
/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/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
22 digit = (source[i] >> 4) & 0xF; in http_hex_ascii_convert()
31 digit = source[i] & 0xF; in http_hex_ascii_convert()
/NetX-Duo-v6.2.1/test/regression/netxduo_test/
Dnetx_3_08_test.c122 ULONG source; in ntest_0_entry() local
210 source = 0x01020305; in ntest_0_entry()
215 source_ip = &source; in ntest_0_entry()
222 source_ip = source; in ntest_0_entry()
/NetX-Duo-v6.2.1/
DCONTRIBUTING.md7 Eclipse ThreadX provides a vendor-neutral, open source, safety certified OS for
28 Information regarding source code management, builds, coding standards, and more.
31 The project maintains the following source code repositories
DREADME.md55 /* up a periodic timer interrupt source, saving the system stack */
120 …and addons you need in `nx_user.h` and build together with the component source code. You can refe…
126 …While the typical usage pattern is to include NetX Duo into your device code source tree to be bui…
/NetX-Duo-v6.2.1/addons/pop3/
Dnxd_pop3_client.h264 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
Dnxd_pop3_client.c2468 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_pop3_hex_ascii_convert() argument
2483 digit = (source[i] >> 4) & 0xF; in _nx_pop3_hex_ascii_convert()
2492 digit = source[i] & 0xF; in _nx_pop3_hex_ascii_convert()
/NetX-Duo-v6.2.1/test/regression/azure_iot/
Dnx_azure_iot_pnp_client_command_unit_test.c187 az_span source = az_span_create(client_ptr -> nxd_mqtt_client_username, in __wrap__nxde_mqtt_client_secure_connect() local
195 assert_int_not_equal(az_span_find(source, target), -1); in __wrap__nxde_mqtt_client_secure_connect()
Dnx_azure_iot_pnp_client_telemetry_unit_test.c151 az_span source = az_span_create(client_ptr -> nxd_mqtt_client_username, in __wrap__nxde_mqtt_client_secure_connect() local
165 assert_int_not_equal(az_span_find(source, target), -1); in __wrap__nxde_mqtt_client_secure_connect()
Dnx_azure_iot_adu_agent_unit_test.c432 az_span source = az_span_create(client_ptr -> nxd_mqtt_client_username, in __wrap__nxde_mqtt_client_secure_connect() local
440 assert_int_not_equal(az_span_find(source, target), -1); in __wrap__nxde_mqtt_client_secure_connect()
Dnx_azure_iot_pnp_client_properties_unit_test.c242 az_span source = az_span_create(client_ptr -> nxd_mqtt_client_username, in __wrap__nxde_mqtt_client_secure_connect() local
250 assert_int_not_equal(az_span_find(source, target), -1); in __wrap__nxde_mqtt_client_secure_connect()
/NetX-Duo-v6.2.1/addons/pppoe/
Dnx_pppoe_client.c64 static VOID _nx_pppoe_client_string_add(UCHAR *dest, UCHAR *source, UINT size);
3297 static VOID _nx_pppoe_client_string_add(UCHAR *dest, UCHAR *source, UINT size) in _nx_pppoe_client_string_add() argument
3305 *dest++ = *source++; in _nx_pppoe_client_string_add()
Dnx_pppoe_server.c62 static VOID _nx_pppoe_server_string_add(UCHAR *dest, UCHAR *source, UINT size);
3695 static VOID _nx_pppoe_server_string_add(UCHAR *dest, UCHAR *source, UINT size) in _nx_pppoe_server_string_add() argument
3703 *dest++ = *source++; in _nx_pppoe_server_string_add()
/NetX-Duo-v6.2.1/docs/
Drevision_history.txt191 Files are modified to support specified source interface for IPv6:
794 when source address is unspecified.
819 … nx_tcp_packet_process.c Fixed check for multicast source address.
1057 Files are added or modified to fix source selection for icmpv4 ping:
1535 …nx_ipv4_packet_receive.c Fixed a bug in source check when address mapping …
1562 nx_tcp_packet_process.c Fixed invalid source address check.
2005 supported checking for source IP address.
2016 nxd_ip_raw_packet_source_send.c Fixed source address selection for IPv6.
2028 Fixed source address selection for IPv6.
2047 … nx_tcp_packet_process.c Checked source address for syn packets that are queued.
[all …]
/NetX-Duo-v6.2.1/addons/http/
Dnxd_http_server.h626 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
Dnxd_http_server.c6824 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_http_server_hex_ascii_convert() argument
6839 digit = (source[i] >> 4) & 0xF; in _nx_http_server_hex_ascii_convert()
6848 digit = source[i] & 0xF; in _nx_http_server_hex_ascii_convert()
/NetX-Duo-v6.2.1/addons/dhcp/
Dnxd_dhcp_client.c54 static VOID _nx_dhcp_move_string(UCHAR *dest, UCHAR *source, UINT size);
8423 static VOID _nx_dhcp_move_string(UCHAR *dest, UCHAR *source, UINT size) in _nx_dhcp_move_string() argument
8431 *dest++ = *source++; in _nx_dhcp_move_string()
/NetX-Duo-v6.2.1/addons/web/
Dnx_web_http_server.h627 VOID _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destinati…
Dnx_web_http_server.c7337 VOID _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_web_http_server_hex_ascii_convert() argument
7352 digit = (source[i] >> 4) & 0xF; in _nx_web_http_server_hex_ascii_convert()
7361 digit = source[i] & 0xF; in _nx_web_http_server_hex_ascii_convert()
/NetX-Duo-v6.2.1/addons/azure_iot/docs/
Dazure_rtos_iot_json.md363 * NX_TRUE If the current JSON token value in the JSON source semantically matches the expected look…