Home
last modified time | relevance | path

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

12

/NetX-Duo-v6.2.1/common/src/
Dnx_md5.c66 #define FF(a, b, c, d, x, s, ac) { \ argument
67 (a) += F ((b), (c), (d)) + (x) + (ULONG)(ac); \
71 #define GG(a, b, c, d, x, s, ac) { \ argument
72 (a) += G ((b), (c), (d)) + (x) + (ULONG)(ac); \
76 #define HH(a, b, c, d, x, s, ac) { \ argument
77 (a) += H ((b), (c), (d)) + (x) + (ULONG)(ac); \
81 #define II(a, b, c, d, x, s, ac) { \ argument
82 (a) += I ((b), (c), (d)) + (x) + (ULONG)(ac); \
425 ULONG a, b, c, d; in _nx_md5_process_buffer() local
433 d = context -> nx_md5_states[3]; in _nx_md5_process_buffer()
[all …]
/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_md5.c67 #define FF(a, b, c, d, x, s, ac) { \ argument
68 (a) += F((b), (c), (d)) + (x) + (ULONG)(ac); \
72 #define GG(a, b, c, d, x, s, ac) { \ argument
73 (a) += G((b), (c), (d)) + (x) + (ULONG)(ac); \
77 #define HH(a, b, c, d, x, s, ac) { \ argument
78 (a) += H((b), (c), (d)) + (x) + (ULONG)(ac); \
82 #define II(a, b, c, d, x, s, ac) { \ argument
83 (a) += I((b), (c), (d)) + (x) + (ULONG)(ac); \
442 ULONG a, b, c, d; in _nx_crypto_md5_process_buffer() local
450 d = context -> nx_md5_states[3]; in _nx_crypto_md5_process_buffer()
[all …]
Dnx_crypto_sha2.c441 ULONG a, b, c, d, e, f, g, h; in _nx_crypto_sha256_process_buffer() local
451 d = context -> nx_sha256_states[3]; in _nx_crypto_sha256_process_buffer()
465 d = d + temp1; in _nx_crypto_sha256_process_buffer()
469 temp1 = g + LARGE_SIGMA_1(d) + CH_FUNC(d, e, f) + _sha2_round_constants[t + 1] + w[t + 1]; in _nx_crypto_sha256_process_buffer()
475 temp1 = f + LARGE_SIGMA_1(c) + CH_FUNC(c, d, e) + _sha2_round_constants[t + 2] + w[t + 2]; in _nx_crypto_sha256_process_buffer()
481 temp1 = e + LARGE_SIGMA_1(b) + CH_FUNC(b, c, d) + _sha2_round_constants[t + 3] + w[t + 3]; in _nx_crypto_sha256_process_buffer()
487 temp1 = d + LARGE_SIGMA_1(a) + CH_FUNC(a, b, c) + _sha2_round_constants[t + 4] + w[t + 4]; in _nx_crypto_sha256_process_buffer()
490 d = temp1 + temp2; in _nx_crypto_sha256_process_buffer()
495 temp2 = LARGE_SIGMA_0(d) + MAJ_FUNC(d, e, f); in _nx_crypto_sha256_process_buffer()
501 temp2 = LARGE_SIGMA_0(c) + MAJ_FUNC(c, d, e); in _nx_crypto_sha256_process_buffer()
[all …]
Dnx_crypto_sha1.c430 ULONG a, b, c, d, e; in _nx_crypto_sha1_process_buffer() local
457 d = context -> nx_sha1_states[3]; in _nx_crypto_sha1_process_buffer()
465 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_crypto_sha1_process_buffer()
466 e = d; in _nx_crypto_sha1_process_buffer()
467 d = c; in _nx_crypto_sha1_process_buffer()
478 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_crypto_sha1_process_buffer()
479 e = d; in _nx_crypto_sha1_process_buffer()
480 d = c; in _nx_crypto_sha1_process_buffer()
491 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_crypto_sha1_process_buffer()
492 e = d; in _nx_crypto_sha1_process_buffer()
[all …]
Dnx_crypto_ec.c2722 NX_CRYPTO_KEEP VOID _nx_crypto_ec_naf_compute(NX_CRYPTO_HUGE_NUMBER *d, HN_UBASE *naf_data, UINT *n… in _nx_crypto_ec_naf_compute() argument
2734 for (i = 0; i < d -> nx_crypto_huge_number_size - 1; i++) in _nx_crypto_ec_naf_compute()
2736 digit = digit + d -> nx_crypto_huge_number_data[i]; in _nx_crypto_ec_naf_compute()
2758 value = (((d -> nx_crypto_huge_number_data[i + 1] & 1) << 1) + digit) & 3; in _nx_crypto_ec_naf_compute()
2777 digit = digit + d -> nx_crypto_huge_number_data[i]; in _nx_crypto_ec_naf_compute()
2868 NX_CRYPTO_HUGE_NUMBER *d, in _nx_crypto_ec_fp_projective_multiple() argument
2883 _nx_crypto_ec_fp_fixed_multiple(curve, d, r, scratch); in _nx_crypto_ec_fp_projective_multiple()
2899 _nx_crypto_ec_naf_compute(d, naf_data, &naf_size); in _nx_crypto_ec_fp_projective_multiple()
3000 NX_CRYPTO_HUGE_NUMBER *d, in _nx_crypto_ec_fp_fixed_multiple() argument
3028 NX_CRYPTO_HUGE_NUMBER_COPY(&expanded_d, d); in _nx_crypto_ec_fp_fixed_multiple()
[all …]
Dnx_crypto_sha5.c505 ULONG64 a, b, c, d, e, f, g, h; in _nx_crypto_sha512_process_buffer() local
538 d = context -> nx_sha512_states[3]; in _nx_crypto_sha512_process_buffer()
552 e = d + temp1; in _nx_crypto_sha512_process_buffer()
553 d = c; in _nx_crypto_sha512_process_buffer()
563 context -> nx_sha512_states[3] += d; in _nx_crypto_sha512_process_buffer()
570 a = 0; b = 0; c = 0; d = 0; in _nx_crypto_sha512_process_buffer()
/NetX-Duo-v6.2.1/test/regression/interoperability_test/ecc_certificates/
DECTestServer3.crt15 04:00:30:a5:94:4f:3e:d1:8d:cf:c4:d7:54:fb:62:
17 41:1c:21:6c:0c:c4:0c:1b:91:6d:95:ad:84:1a:c3:
19 4d:d8:b0:49:aa:1c:75:00:a7:a4:69:dc:a8:63:41:
21 fc:4d:0e:ab:42:64:a5:0f:f5:38:7b:39:9c:99:33:
22 ec:cb:12:90:5d:92:49:9a:06:ff:d7:7c:80:d9:f9:
38 30:81:88:02:42:00:df:ad:0f:cb:3d:c6:a3:eb:5b:66:bc:22:
39 96:de:5d:a4:3e:24:0e:3f:15:78:81:60:78:20:32:56:ef:25:
40 36:be:16:7d:51:2f:e6:ef:25:39:72:25:65:a7:af:7c:f0:bb:
42 42:01:5d:fb:f8:c2:0e:23:72:d8:13:6e:e2:32:96:33:02:22:
43 5d:5d:0e:76:79:7b:a6:68:e0:e5:1e:b2:d0:d6:4a:14:90:80:
[all …]
DECTestServer6.crt19 aa:1c:be:f8:6e:24:a9:39:03:40:5d:32:6a:a3:8f:
20 09:31:73:9f:11:b1:94:2d:8f:ee:21:6e:5b:ee:03:
23 2a:f0:2c:1c:03:82:17:91:39:fa:a9:c9:28:4d:78:
24 c3:48:94:6d:fb:25:4b:72:d8:21:37:64:26:31:01:
25 fc:4c:fe:00:83:ee:8b:57:90:53:0d:0c:6f:82:30:
32 4d:81
47 04:e7:a3:bf:dc:0d:a8:83:03:9d:df:11:ce:29:eb:ed:e0:80:
49 30:32:c6:2d:07:22:55:b6:e2:4c:48:7f:8e:88:d6:9a:e9:e6:
50 5a:71:ed:dd:dd:9d:4b:f1:8a:51:19:a0:9d:af:61:c6:13:0e:
51 d0:c6:7d:62:a9:c8:d0:2b:37:8d:d4:95:d0
DECTestServer4.crt18 e7:3d:c6:1f:2d:ff:48:fc:e6:7c:72:35:cc:c9:af:
20 d5:6a:38:1c:86:01:72:1e:8d:a5:67:fb:ff:b2:f1:
38 10:1f:70:88:a8:44:86:89:9d:21:e4:72:6c:6f:d0:92:02:30:
39 06:53:65:a6:04:fd:20:2f:5b:4d:95:14:a4:fa:97:b9:cf:80:
40 ab:6a:a5:7a:7b:7a:c5:c3:98:1e:5f:fc:49:23:f7:3d:f5:38:
41 55:25:db:6d:1d:62:36:d2:fa:47:0d:c2
DECTestServer10.crt15 04:f9:1a:1d:20:7d:9a:66:4e:7e:ba:6b:46:32:c5:
35 e9:01:b5:4d:c2:50:c3:83:11:f1:7c:96:fc:16:71:30:81:9a:
36 c4:02:20:5d:d9:2d:ed:92:bb:c7:55:ee:bd:df:1b:3e:3b:b8:
DECTestServer8_224.crt15 04:fa:17:9d:00:cb:26:b5:b8:d5:45:d7:63:e1:db:
16 e9:c4:b5:86:e4:1d:a5:10:f5:da:6c:3a:4d:a3:5d:
34 4e:60:2f:68:1d:fa:b4:87:f2:af:21:e0:1b:84:84:8f:74:cf:
DECTestServer9_192.crt16 23:6a:d4:47:6d:b5:41:a1:3b:45:09:13:e3:7a:42:
17 2f:91:55:05:e1:64:e9:c5:b9:14:6d:a2:06:bc:54:
33 30:45:02:21:00:b9:64:a3:66:0d:25:df:e2:c7:0f:eb:a3:80:
35 f8:02:20:23:6a:e7:c2:d1:e6:bc:54:6d:01:8d:fa:e7:7e:09:
DECTestServer7_256.crt34 30:66:02:31:00:8f:cd:27:83:3b:3a:93:a2:1c:1a:8d:be:02:
35 07:9f:6c:f5:28:83:91:7d:1c:49:f2:83:40:4a:78:11:b0:a0:
37 31:00:e3:91:01:6a:26:98:86:7d:90:75:8b:1d:aa:cf:12:e5:
39 7d:f8:53:17:05:b3:57:82:06:91:b9:db:a1:09
DECIntm.crt18 99:5c:a8:7a:ae:8e:0d:f9:e7:8c:90:12:60:d4:53:
35 4a:f9:5e:d3:75:86:89:7d:4b:3a:a6:32:e9:7f:a5:13:fc:96:
38 2d:26:22:08:04:5d:e4:1c:fd:d6:f0:a7:f2:ca:29:fa:f6:35:
39 7c:f1:8c:5e:65:62:b5:d6:38:19:af:1d:02
DECRevoked2.crt16 7d:2f:68:a9:70:94:4d:f7:d4:79:bf:53:b2:98:3b:
34 30:44:02:20:31:be:74:d3:dd:4f:3d:fe:c6:40:9e:20:ce:07:
36 02:20:4e:61:65:97:08:7f:ee:c4:1d:86:31:95:bc:6e:44:fe:
DECTestServer2.crt15 04:46:5f:dc:06:e4:83:8f:2a:24:4d:ef:fb:81:d4:
16 c7:87:b4:6f:34:98:fe:ce:0d:9e:83:ed:0f:15:5b:
37 bb:74:8f:d4:59:3c:71:cc:a7:01:77:72:84:7d:a7:f6:0e:64
DECTestClient1.crt15 04:67:0b:4d:d1:29:7a:f8:29:41:d8:38:b3:ad:60:
17 fb:e3:0f:1c:77:7e:30:0f:4f:62:bd:88:ff:43:2d:
38 f6:c9:51:f1:71:5c:9c:ab:b1:63:93:fb:1b:eb:19:0d:02:30:
DECRevoked.key6 AwEHoUQDQgAELCS8o+ejaQj61UPKUmwT2wZ4EHygk1F7GyFnhIzwoabL9+d+8Xoi
/NetX-Duo-v6.2.1/addons/websocket/
Dnx_sha1.c413 ULONG a, b, c, d, e; in _nx_sha1_process_buffer() local
440 d = context -> nx_sha1_states[3]; in _nx_sha1_process_buffer()
448 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer()
449 e = d; in _nx_sha1_process_buffer()
450 d = c; in _nx_sha1_process_buffer()
461 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer()
462 e = d; in _nx_sha1_process_buffer()
463 d = c; in _nx_sha1_process_buffer()
474 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer()
475 e = d; in _nx_sha1_process_buffer()
[all …]
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_sha1.c413 ULONG a, b, c, d, e; in _nx_sha1_process_buffer() local
440 d = context -> nx_sha1_states[3]; in _nx_sha1_process_buffer()
448 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer()
449 e = d; in _nx_sha1_process_buffer()
450 d = c; in _nx_sha1_process_buffer()
461 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer()
462 e = d; in _nx_sha1_process_buffer()
463 d = c; in _nx_sha1_process_buffer()
474 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer()
475 e = d; in _nx_sha1_process_buffer()
[all …]
/NetX-Duo-v6.2.1/addons/tftp/
Dnxd_tftp_client.h214 #define nx_tftp_client_create(a,b,c,d) _nxd_tftp_client_create(a,b,c,d,NX_IP_VERSION_V4) argument
242 #define nx_tftp_client_create(a,b,c,d) _nxde_tftp_client_create(a,b,c,d,NX_IP_VERSION_V4) argument
/NetX-Duo-v6.2.1/test/regression/interoperability_test/mqtt_test/test_scripts/CA/certs/
Dew2017.client.crt29 1d/o0ei/yLfN9XkocyYEalkpX8hELqL0tuNAwHJVnT77gSYUmFsFjobEnlZrXSEP
/NetX-Duo-v6.2.1/.github/ISSUE_TEMPLATE/
Dfeature_request.md13 **Describe the solution you'd like**
/NetX-Duo-v6.2.1/common/inc/
Dnx_api.h493 …TRACE_IN_LINE_INSERT(i, a, b, c, d, f, g, h) _nx_trace_event_insert((ULONG)i, (ULONG)a, (ULONG… argument
494 … t, i, a, b, c, d) _nx_trace_event_update((TX_TRACE_BUFFER_ENTRY *)e, (ULONG)t, (ULONG)i,… argument
506 #define NX_TRACE_IN_LINE_INSERT(i, a, b, c, d, f, g, h)
507 #define NX_TRACE_EVENT_UPDATE(e, t, i, a, b, c, d)
1427 #define IP_ADDRESS(a, b, c, d) ((((ULONG)a) << 24) | (((ULONG)b) << 16) | (((UL… argument
3430 #define nx_ip_create(i, n, a, m, d, l, p, s, y) _nxe_ip_create(i, n, a, m, d, l, p, s, y, s… argument
3482 #define nx_ip_raw_packet_send(i, p, d, t) _nxe_ip_raw_packet_send(i, &p, d, t) argument
3483 #define nx_ip_raw_packet_source_send(i, p, d, a, t) _nxe_ip_raw_packet_source_send(i, &p, d, a,… argument
3485 #define nxd_ip_raw_packet_send(i, p, d, t, l, s) _nxde_ip_raw_packet_send(i, &p, d, t, l, s) argument
3529 …efine nx_tcp_socket_create(i, s, n, t, f, l, w, u, d) _nxe_tcp_socket_create(i, s, n, t, f, l, w, … argument
/NetX-Duo-v6.2.1/crypto_libraries/inc/
Dnx_crypto_ec.h149 NX_CRYPTO_HUGE_NUMBER *d,
533 NX_CRYPTO_HUGE_NUMBER *d,
537 NX_CRYPTO_HUGE_NUMBER *d,
541 VOID _nx_crypto_ec_naf_compute(NX_CRYPTO_HUGE_NUMBER *d, HN_UBASE *naf_data, UINT *naf_size);

12