/NetX-Duo-v6.3.0/addons/snmp/ |
D | nx_des.c | 354 UINT _nx_des_encrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]) in _nx_des_encrypt() 362 _nx_des_process_block(source, destination, context -> nx_des_encryption_keys); in _nx_des_encrypt() 412 UINT _nx_des_decrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]) in _nx_des_decrypt() 420 _nx_des_process_block(source, destination, context -> nx_des_decryption_keys); in _nx_des_decrypt() 471 VOID _nx_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]) in _nx_des_process_block() 480 …left = (((ULONG) source[0]) << 24) | (((ULONG) source[1]) << 16) | (((ULONG) source[2]) << 8) | (… in _nx_des_process_block() 481 …right = (((ULONG) source[4]) << 24) | (((ULONG) source[5]) << 16) | (((ULONG) source[6]) << 8) | … in _nx_des_process_block()
|
D | nx_des.h | 72 UINT _nx_des_encrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]); 73 UINT _nx_des_decrypt(NX_DES *context, UCHAR source[8], UCHAR destination[8]); 74 VOID _nx_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]);
|
/NetX-Duo-v6.3.0/crypto_libraries/src/ |
D | nx_crypto_des.c | 364 NX_CRYPTO_KEEP UINT _nx_crypto_des_encrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destinat… in _nx_crypto_des_encrypt() 369 …_nx_crypto_des_process_block(source, destination, context -> nx_des_encryption_keys); /* lgtm[cpp/… in _nx_crypto_des_encrypt() 426 NX_CRYPTO_KEEP UINT _nx_crypto_des_decrypt(NX_CRYPTO_DES *context, UCHAR source[8], UCHAR destinat… in _nx_crypto_des_decrypt() 431 …_nx_crypto_des_process_block(source, destination, context -> nx_des_decryption_keys); /* lgtm[cpp/… in _nx_crypto_des_decrypt() 483 NX_CRYPTO_KEEP VOID _nx_crypto_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys… in _nx_crypto_des_process_block() 492 …left = (((ULONG)source[0]) << 24) | (((ULONG)source[1]) << 16) | (((ULONG)source[2]) << 8) | ((UL… in _nx_crypto_des_process_block() 493 …right = (((ULONG)source[4]) << 24) | (((ULONG)source[5]) << 16) | (((ULONG)source[6]) << 8) | ((U… in _nx_crypto_des_process_block()
|
D | nx_crypto_3des.c | 134 NX_CRYPTO_KEEP UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES *context, UCHAR source[8], in _nx_crypto_3des_encrypt() 140 …_nx_crypto_des_encrypt(&context -> des_1, source, destination, length); /* lgtm[cpp/weak-cryptogra… in _nx_crypto_3des_encrypt() 200 NX_CRYPTO_KEEP UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES *context, UCHAR source[8], in _nx_crypto_3des_decrypt() 209 …_nx_crypto_des_decrypt(&context -> des_3, source, destination, length); /* lgtm[cpp/weak-cryptogra… in _nx_crypto_3des_decrypt()
|
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/inc/asc_security_core/model/ |
D | mti.h | 35 #define MTI(source) MTI_CORE source MTI_TYPE argument
|
/NetX-Duo-v6.3.0/crypto_libraries/inc/ |
D | nx_crypto_des.h | 113 UINT _nx_crypto_des_encrypt(NX_CRYPTO_DES * context, UCHAR source[8], UCHAR destination[8], UINT le… 114 UINT _nx_crypto_des_decrypt(NX_CRYPTO_DES * context, UCHAR source[8], UCHAR destination[8], UINT le… 115 VOID _nx_crypto_des_process_block(UCHAR source[8], UCHAR destination[8], ULONG keys[32]);
|
D | nx_crypto_3des.h | 110 UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT … 111 UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT …
|
/NetX-Duo-v6.3.0/ |
D | SECURITY.md | 3 …rity of our software products and services seriously, which includes all source code repositories … 20 * Full paths of source file(s) related to the manifestation of the issue 21 * The location of the affected source code (tag/branch/commit or direct URL)
|
D | README.md | 57 /* up a periodic timer interrupt source, saving the system stack */ 131 …and addons you need in `nx_user.h` and build together with the component source code. You can refe… 137 …While the typical usage pattern is to include NetX Duo into your device code source tree to be bui…
|
D | LICENSE.txt | 63 iii. You may redistribute the unmodified or modified source to your device 65 redistribution in source code form must contain this license and any other 72 ii. when distributed in source code form to distributors or developers of your
|
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/ |
D | NOTICE.txt | 7 open source code available at https://3rdpartysource.microsoft.com, or you may 9 source component name, and version number, to: 60 including but not limited to software source code, documentation 61 source, and configuration files. 89 communication on electronic mailing lists, source code control systems, 265 including but not limited to software source code, documentation 266 source, and configuration files. 294 communication on electronic mailing lists, source code control systems,
|
/NetX-Duo-v6.3.0/addons/pop3/ |
D | nxd_pop3_client.h | 265 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
|
D | nxd_pop3_client.c | 2469 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_pop3_hex_ascii_convert() argument 2484 digit = (source[i] >> 4) & 0xF; in _nx_pop3_hex_ascii_convert() 2493 digit = source[i] & 0xF; in _nx_pop3_hex_ascii_convert()
|
/NetX-Duo-v6.3.0/addons/pppoe/ |
D | nx_pppoe_client.c | 65 static VOID _nx_pppoe_client_string_add(UCHAR *dest, UCHAR *source, UINT size); 3298 static VOID _nx_pppoe_client_string_add(UCHAR *dest, UCHAR *source, UINT size) in _nx_pppoe_client_string_add() argument 3306 *dest++ = *source++; in _nx_pppoe_client_string_add()
|
D | nx_pppoe_server.c | 63 static VOID _nx_pppoe_server_string_add(UCHAR *dest, UCHAR *source, UINT size); 3696 static VOID _nx_pppoe_server_string_add(UCHAR *dest, UCHAR *source, UINT size) in _nx_pppoe_server_string_add() argument 3704 *dest++ = *source++; in _nx_pppoe_server_string_add()
|
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/cmake-modules/ |
D | asc_security_coreCodeCoverage.cmake | 4 # Redistribution and use in source and binary forms, with or without modification, 7 # 1. Redistributions of source code must retain the above copyright notice, this
|
/NetX-Duo-v6.3.0/addons/http/ |
D | nxd_http_server.h | 627 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
|
D | nxd_http_server.c | 6825 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_http_server_hex_ascii_convert() argument 6840 digit = (source[i] >> 4) & 0xF; in _nx_http_server_hex_ascii_convert() 6849 digit = source[i] & 0xF; in _nx_http_server_hex_ascii_convert()
|
/NetX-Duo-v6.3.0/addons/dhcp/ |
D | nxd_dhcp_client.c | 55 static VOID _nx_dhcp_move_string(UCHAR *dest, UCHAR *source, UINT size); 8424 static VOID _nx_dhcp_move_string(UCHAR *dest, UCHAR *source, UINT size) in _nx_dhcp_move_string() argument 8432 *dest++ = *source++; in _nx_dhcp_move_string()
|
/NetX-Duo-v6.3.0/addons/web/ |
D | nx_web_http_server.h | 628 VOID _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destinati…
|
D | nx_web_http_server.c | 7338 VOID _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination) in _nx_web_http_server_hex_ascii_convert() argument 7353 digit = (source[i] >> 4) & 0xF; in _nx_web_http_server_hex_ascii_convert() 7362 digit = source[i] & 0xF; in _nx_web_http_server_hex_ascii_convert()
|
/NetX-Duo-v6.3.0/addons/azure_iot/docs/ |
D | azure_rtos_iot_json.md | 363 * NX_TRUE If the current JSON token value in the JSON source semantically matches the expected look…
|