Home
last modified time | relevance | path

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

/NetX-Duo-v6.3.0/addons/snmp/
Dnx_des.c354 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()
Dnx_des.h72 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/
Dnx_crypto_des.c364 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()
Dnx_crypto_3des.c134 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/
Dmti.h35 #define MTI(source) MTI_CORE source MTI_TYPE argument
/NetX-Duo-v6.3.0/crypto_libraries/inc/
Dnx_crypto_des.h113 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]);
Dnx_crypto_3des.h110 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/
DSECURITY.md3 …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)
DREADME.md57 /* 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…
DLICENSE.txt63 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/
DNOTICE.txt7 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/
Dnxd_pop3_client.h265 VOID _nx_pop3_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
Dnxd_pop3_client.c2469 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/
Dnx_pppoe_client.c65 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()
Dnx_pppoe_server.c63 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/
Dasc_security_coreCodeCoverage.cmake4 # 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/
Dnxd_http_server.h627 VOID _nx_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destination);
Dnxd_http_server.c6825 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/
Dnxd_dhcp_client.c55 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/
Dnx_web_http_server.h628 VOID _nx_web_http_server_hex_ascii_convert(CHAR *source, UINT source_length, CHAR *destinati…
Dnx_web_http_server.c7338 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/
Dazure_rtos_iot_json.md363 * NX_TRUE If the current JSON token value in the JSON source semantically matches the expected look…