Home
last modified time | relevance | path

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

12

/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_sha2.c48 …ine W0(t) ((((ULONG)buffer[(t) * 4]) << 24) | (((ULONG)buffer[((t) * 4) + 1]) << 16) | (((ULONG)bu… argument
49 #define W16(t) (SMALL_SIGMA_1(w[(t) - 2]) + w[(t) - 7] + SMALL_SIGMA_0(w[(t) - 15]) + w[(t) - 16]) argument
439 UINT t; in _nx_crypto_sha256_process_buffer() local
458 for (t = 0; t < 16; t += 8) in _nx_crypto_sha256_process_buffer()
462 w[t] = W0(t); in _nx_crypto_sha256_process_buffer()
463 temp1 = h + LARGE_SIGMA_1(e) + CH_FUNC(e, f, g) + _sha2_round_constants[t] + w[t]; in _nx_crypto_sha256_process_buffer()
468 w[t + 1] = W0(t + 1); 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()
474 w[t + 2] = W0(t + 2); 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()
[all …]
Dnx_crypto_sha1.c428 UINT t; in _nx_crypto_sha1_process_buffer() local
438 for (t = 0; t < 16; t++) in _nx_crypto_sha1_process_buffer()
442 …w[t] = (((ULONG)buffer[t * 4]) << 24) | (((ULONG)buffer[(t * 4) + 1]) << 16) | (((ULONG)buffer[(t in _nx_crypto_sha1_process_buffer()
446 for (t = 16; t < 80; t++) in _nx_crypto_sha1_process_buffer()
450 w[t] = LEFT_SHIFT_CIRCULAR((w[t - 3] ^ w[t - 8] ^ w[t - 14] ^ w[t - 16]), 1); in _nx_crypto_sha1_process_buffer()
461 for (t = 0; t < 20; t++) 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()
474 for (t = 20; t < 40; t++) 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()
487 for (t = 40; t < 60; t++) in _nx_crypto_sha1_process_buffer()
[all …]
Dnx_crypto_sha5.c503 UINT t; in _nx_crypto_sha512_process_buffer() local
513 for (t = 0; t < 16; t++) in _nx_crypto_sha512_process_buffer()
516 w[t] = (((ULONG64)buffer[0]) << 56) | in _nx_crypto_sha512_process_buffer()
528 for (t = 16; t < 80; t++) in _nx_crypto_sha512_process_buffer()
531 w[t] = SMALL_SIGMA_1(w[t - 2]) + w[t - 7] + SMALL_SIGMA_0(w[t - 15]) + w[t - 16]; in _nx_crypto_sha512_process_buffer()
545 for (t = 0; t < 80; t++) in _nx_crypto_sha512_process_buffer()
547 temp1 = h + LARGE_SIGMA_1(e) + CH_FUNC(e, f, g) + _sha5_round_constants[t] + w[t]; in _nx_crypto_sha512_process_buffer()
/NetX-Duo-v6.2.1/addons/websocket/
Dnx_sha1.c411 UINT t; in _nx_sha1_process_buffer() local
421 for (t = 0; t < 16; t++) in _nx_sha1_process_buffer()
425 …w[t] = (((ULONG) buffer[t * 4]) << 24) | (((ULONG) buffer[(t * 4) + 1]) << 16) | (((ULONG) buffer… in _nx_sha1_process_buffer()
429 for (t = 16; t < 80; t++) in _nx_sha1_process_buffer()
433 w[t] = LEFT_SHIFT_CIRCULAR((w[t-3] ^ w[t-8] ^ w[t-14] ^ w[t-16]), 1); in _nx_sha1_process_buffer()
444 for (t = 0; t < 20; t++) 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()
457 for (t = 20; t < 40; t++) 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()
470 for (t = 40; t < 60; t++) in _nx_sha1_process_buffer()
[all …]
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_sha1.c411 UINT t; in _nx_sha1_process_buffer() local
421 for (t = 0; t < 16; t++) in _nx_sha1_process_buffer()
425 …w[t] = (((ULONG) buffer[t * 4]) << 24) | (((ULONG) buffer[(t * 4) + 1]) << 16) | (((ULONG) buffer… in _nx_sha1_process_buffer()
429 for (t = 16; t < 80; t++) in _nx_sha1_process_buffer()
433 w[t] = LEFT_SHIFT_CIRCULAR((w[t-3] ^ w[t-8] ^ w[t-14] ^ w[t-16]), 1); in _nx_sha1_process_buffer()
444 for (t = 0; t < 20; t++) 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()
457 for (t = 20; t < 40; t++) 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()
470 for (t = 40; t < 60; t++) in _nx_sha1_process_buffer()
[all …]
/NetX-Duo-v6.2.1/test/regression/mdns_test/
Dnetx_mdns_announcement_repeat_test.c31 static UINT t; variable
157 t = 100; in ntest_0_entry()
166 …nx_mdns_service_announcement_timing_set(&mdns_0, t, p, k, retrans_interval, period_interval, max_t… in ntest_0_entry()
190 t = 200; in ntest_0_entry()
199 …nx_mdns_service_announcement_timing_set(&mdns_0, t, p, k, retrans_interval, period_interval, max_t… in ntest_0_entry()
223 t = 100; in ntest_0_entry()
232 …nx_mdns_service_announcement_timing_set(&mdns_0, t, p, k, retrans_interval, period_interval, max_t… in ntest_0_entry()
256 t = 100; in ntest_0_entry()
265 …nx_mdns_service_announcement_timing_set(&mdns_0, t, p, k, retrans_interval, period_interval, max_t… in ntest_0_entry()
289 t = 100; in ntest_0_entry()
[all …]
/NetX-Duo-v6.2.1/test/regression/interoperability_test/ecc_certificates/
DECTestServer2.key5 MHcCAQEEIFmLLKjv52EtFwyNkqSuB0ahkZz0Q+258t+34gyodiUooAoGCCqGSM49
/NetX-Duo-v6.2.1/common/inc/
Dnx_api.h491 #define NX_TRACE_OBJECT_REGISTER(t, p, n, a, b) _nx_trace_object_register(t, (VOID *)p,… argument
494 #define NX_TRACE_EVENT_UPDATE(e, t, i, a, b, c, d) _nx_trace_event_update((TX_TRACE_BUFFER… argument
504 #define NX_TRACE_OBJECT_REGISTER(t, p, n, a, b)
507 #define NX_TRACE_EVENT_UPDATE(e, t, i, a, b, c, d)
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 #define 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
3543 #define nx_tcp_socket_send(s, p, t) _nxe_tcp_socket_send(s, &p, t) argument
3561 #define nx_udp_socket_create(i, s, n, t, f, l, q) _nxe_udp_socket_create(i, s, n, t, f, l, q,… argument
[all …]
/NetX-Duo-v6.2.1/test/regression/interoperability_test/nx_secure_test/
Dnx_secure_ecc_server_curves_entry.c16 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
17 #define TEST_CASE_INIT(g, c, s, t) {g, sizeof(g) / sizeof(USHORT),\ argument
18 c, sizeof(c) / sizeof(NX_CRYPTO_METHOD *), s, t}
Dnx_secure_ecc_curves_test_client_entry.c20 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
21 #define TEST_CASE_INIT(g, c, s, t) {g, sizeof(g) / sizeof(USHORT),\ argument
22 c, sizeof(c) / sizeof(NX_CRYPTO_METHOD *), s, t}
Dkey.pem7 t/c26/vwA/HgFSE6xqLZ+iVYYrgubbX3TUbN7K40FkfRF8x4OIVqImJ+wxYvXGqZ
Dsignature_algorithm_test_nx_secure_echo_server_entry.c19 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_ecc_server_ciphersuites_entry.c19 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dsignature_algorithm_test_nx_secure_echo_client_entry.c22 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
/NetX-Duo-v6.2.1/test/cmake/azure_iot/configs/
Dwin32.cmake14 # this makes the test compiles use static library option so that we don't need to pre-set linker fl…
Dlinux.cmake30 # this makes the test compiles use static library option so that we don't need to pre-set linker fl…
/NetX-Duo-v6.2.1/test/regression/nx_secure_test/
Dnx_secure_dtls_ecc_curves_test.c20 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
21 #define TEST_CASE_INIT(g, c, s, t) {g, sizeof(g) / sizeof(USHORT),\ argument
22 c, sizeof(c) / sizeof(NX_CRYPTO_METHOD *), s, t}
Dnx_secure_tls_ecc_curves_test.c21 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
22 #define TEST_CASE_INIT(g, c, s, t) {g, sizeof(g) / sizeof(USHORT),\ argument
23 c, sizeof(c) / sizeof(NX_CRYPTO_METHOD *), s, t}
Dnx_secure_tls_1_3_provisioned_psk_test.c22 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_tls_empty_clienthello_extension_test.c28 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_tls_1_3_ciphersuites_test.c22 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_tls_1_3_clienthello_length_checking_test.c29 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_tls_1_3_serverhello_length_checking_test.c28 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
Dnx_secure_tls_1_3_session_create_ext_test.c39 #define CERTIFICATE_INIT(s, k, c, t) {s, sizeof(s), k, sizeof(k), c, sizeof(c), t} argument
/NetX-Duo-v6.2.1/cmake/
Darm-none-eabi.cmake15 # this makes the test compiles use static library option so that we don't need to pre-set linker fl…

12