Home
last modified time | relevance | path

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

12

/openthread-latest/third_party/mbedtls/repo/library/
Dsha1.c70 } local; in mbedtls_internal_sha1_process() local
72 local.W[0] = MBEDTLS_GET_UINT32_BE(data, 0); in mbedtls_internal_sha1_process()
73 local.W[1] = MBEDTLS_GET_UINT32_BE(data, 4); in mbedtls_internal_sha1_process()
74 local.W[2] = MBEDTLS_GET_UINT32_BE(data, 8); in mbedtls_internal_sha1_process()
75 local.W[3] = MBEDTLS_GET_UINT32_BE(data, 12); in mbedtls_internal_sha1_process()
76 local.W[4] = MBEDTLS_GET_UINT32_BE(data, 16); in mbedtls_internal_sha1_process()
77 local.W[5] = MBEDTLS_GET_UINT32_BE(data, 20); in mbedtls_internal_sha1_process()
78 local.W[6] = MBEDTLS_GET_UINT32_BE(data, 24); in mbedtls_internal_sha1_process()
79 local.W[7] = MBEDTLS_GET_UINT32_BE(data, 28); in mbedtls_internal_sha1_process()
80 local.W[8] = MBEDTLS_GET_UINT32_BE(data, 32); in mbedtls_internal_sha1_process()
[all …]
Dripemd160.c74 } local; in mbedtls_internal_ripemd160_process() local
76 local.X[0] = MBEDTLS_GET_UINT32_LE(data, 0); in mbedtls_internal_ripemd160_process()
77 local.X[1] = MBEDTLS_GET_UINT32_LE(data, 4); in mbedtls_internal_ripemd160_process()
78 local.X[2] = MBEDTLS_GET_UINT32_LE(data, 8); in mbedtls_internal_ripemd160_process()
79 local.X[3] = MBEDTLS_GET_UINT32_LE(data, 12); in mbedtls_internal_ripemd160_process()
80 local.X[4] = MBEDTLS_GET_UINT32_LE(data, 16); in mbedtls_internal_ripemd160_process()
81 local.X[5] = MBEDTLS_GET_UINT32_LE(data, 20); in mbedtls_internal_ripemd160_process()
82 local.X[6] = MBEDTLS_GET_UINT32_LE(data, 24); in mbedtls_internal_ripemd160_process()
83 local.X[7] = MBEDTLS_GET_UINT32_LE(data, 28); in mbedtls_internal_ripemd160_process()
84 local.X[8] = MBEDTLS_GET_UINT32_LE(data, 32); in mbedtls_internal_ripemd160_process()
[all …]
Dmd5.c69 } local; in mbedtls_internal_md5_process() local
71 local.X[0] = MBEDTLS_GET_UINT32_LE(data, 0); in mbedtls_internal_md5_process()
72 local.X[1] = MBEDTLS_GET_UINT32_LE(data, 4); in mbedtls_internal_md5_process()
73 local.X[2] = MBEDTLS_GET_UINT32_LE(data, 8); in mbedtls_internal_md5_process()
74 local.X[3] = MBEDTLS_GET_UINT32_LE(data, 12); in mbedtls_internal_md5_process()
75 local.X[4] = MBEDTLS_GET_UINT32_LE(data, 16); in mbedtls_internal_md5_process()
76 local.X[5] = MBEDTLS_GET_UINT32_LE(data, 20); in mbedtls_internal_md5_process()
77 local.X[6] = MBEDTLS_GET_UINT32_LE(data, 24); in mbedtls_internal_md5_process()
78 local.X[7] = MBEDTLS_GET_UINT32_LE(data, 28); in mbedtls_internal_md5_process()
79 local.X[8] = MBEDTLS_GET_UINT32_LE(data, 32); in mbedtls_internal_md5_process()
[all …]
Dsha256.c469 local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \
470 S0(local.W[(t) - 15]) + local.W[(t) - 16] \
476 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \
477 local.temp2 = S2(a) + F0((a), (b), (c)); \
478 (d) += local.temp1; (h) = local.temp1 + local.temp2; \
494 } local; in mbedtls_internal_sha256_process_c() local
499 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process_c()
505 local.W[i] = MBEDTLS_GET_UINT32_BE(data, 4 * i); in mbedtls_internal_sha256_process_c()
510 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process_c()
511 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha256_process_c()
[all …]
Dsha512.c608 } local; in mbedtls_internal_sha512_process_c() local
625 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \ in mbedtls_internal_sha512_process_c()
626 local.temp2 = S2(a) + F0((a), (b), (c)); \ in mbedtls_internal_sha512_process_c()
627 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ in mbedtls_internal_sha512_process_c()
631 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process_c()
637 local.W[i] = MBEDTLS_GET_UINT64_BE(data, i << 3); in mbedtls_internal_sha512_process_c()
639 local.W[i] = S1(local.W[i - 2]) + local.W[i - 7] + in mbedtls_internal_sha512_process_c()
640 S0(local.W[i - 15]) + local.W[i - 16]; in mbedtls_internal_sha512_process_c()
643 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process_c()
644 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha512_process_c()
[all …]
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_memory.data31 PSA crypto local input alloc
34 PSA crypto local input alloc, NULL buffer
37 PSA crypto local input free
40 PSA crypto local input free, NULL buffer
43 PSA crypto local input round-trip
46 PSA crypto local output alloc
49 PSA crypto local output alloc, NULL buffer
52 PSA crypto local output free
55 PSA crypto local output free, NULL buffer
58 PSA crypto local output free, NULL original buffer
[all …]
Dtest_suite_psa_crypto_attributes.data14 PSA key attributes: id then back to non local volatile
23 PSA key attributes: non local volatile lifetime then id
Dtest_suite_psa_crypto_metadata.data436 Lifetime: volatile, local storage
439 Lifetime: default, local storage
442 Lifetime: 2, local storage
445 Lifetime: 254, local storage
448 Lifetime: read-only, local storage
Dtest_suite_psa_crypto_se_driver_hal.data12 Register SE driver: invalid location (local)
/openthread-latest/third_party/mbedtls/repo/tests/docker/bionic/
DDockerfile65 && ./config --openssldir=/usr/local/openssl-1.0.1j no-shared \
69 ENV OPENSSL_LEGACY=/usr/local/openssl-1.0.1j/bin/openssl
75 && ./config --openssldir=/usr/local/openssl-1.0.2g no-shared \
79 ENV OPENSSL=/usr/local/openssl-1.0.2g/bin/openssl
86 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar…
90 ENV OPENSSL_NEXT=/usr/local/openssl-1.1.1a/bin/openssl
106 …&& ./configure --prefix=/usr/local/gnutls-3.3.8 --exec_prefix=/usr/local/gnutls-3.3.8 --disable-sh…
110 ENV GNUTLS_LEGACY_CLI=/usr/local/gnutls-3.3.8/bin/gnutls-cli
111 ENV GNUTLS_LEGACY_SERV=/usr/local/gnutls-3.3.8/bin/gnutls-serv
127 && ./configure --prefix=/usr/local/gnutls-3.4.10 --exec_prefix=/usr/local/gnutls-3.4.10 \
[all …]
/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_usrreq.c104 otSockAddr local; in tcp6_connect() local
110 memcpy(&local.mAddress, &tp->laddr, sizeof(local.mAddress)); in tcp6_connect()
114 local.mPort = ntohs(tp->lport); in tcp6_connect()
117 if (!tcplp_sys_autobind(tp->instance, &foreign, &local, autobind_addr, autobind_port)) { in tcp6_connect()
124 memcpy(&tp->laddr, &local.mAddress, sizeof(tp->laddr)); in tcp6_connect()
128 tp->lport = htons(local.mPort); in tcp6_connect()
/openthread-latest/src/cli/
Dcli_br.cpp209 otIp6Prefix local; in Process() local
211 SuccessOrExit(error = otBorderRoutingGetOmrPrefix(GetInstancePtr(), &local)); in Process()
214 OutputIp6PrefixLine(local); in Process()
288 otIp6Prefix local; in Process() local
290 SuccessOrExit(error = otBorderRoutingGetOnLinkPrefix(GetInstancePtr(), &local)); in Process()
293 OutputIp6PrefixLine(local); in Process()
354 otIp6Prefix local; in Process() local
356 SuccessOrExit(error = otBorderRoutingGetNat64Prefix(GetInstancePtr(), &local)); in Process()
359 OutputIp6PrefixLine(local); in Process()
DREADME_BR.md121 Usage: `br omrprefix [local|favored]`
123 Get local or favored or both off-mesh-routable prefixes of the Border Router.
135 > br omrprefix local
142 Usage: `br onlinkprefix [local|favored]`
144 Get local or favored or both on-link prefixes of the Border Router.
156 > br onlinkprefix local
163 Usage: `br nat64prefix [local|favored]`
165 Get local or favored or both NAT64 prefixes of the Border Router.
401 - `(this BR)` is appended when the router is the local device itself.
Dcli_network_data.cpp824 bool local = false; in Process() local
852 local = true; in Process()
864 if (local || binary) in Process()
871 error = OutputBinary(local); in Process()
875 OutputNetworkData(local, rloc16); in Process()
DREADME_NETDATA.md186 - The device is acting as a BR and new entries cannot be added to its local Network Data.
187 …cting as a BR and tries to register its local Network Data entries with the leader, but determines…
259 …e Unicast Address" with given port number, version, and the device's mesh-local EID for the addres…
337 Usage: `netdata show [local] [-x] [\<rloc16\>]`
341 …ted with the given RLOC16 only. The RLOC16 filtering can be used when `-x` or `local` are not used.
433 Print local Network Data to sync with Leader.
436 > netdata show local
444 Print local Network Data to sync with Leader as hex-encoded TLVs.
447 > netdata show local -x
DREADME_SRP_CLIENT.md190 …e all preferred Thread netif unicast addresses excluding all link-local and mesh-local addresses. …
DREADME.md264 Show local Backbone state ([`Disabled`,`Primary`, `Secondary`]) for Thread 1.2 FTD.
315 Show local Backbone Router configuration for Thread 1.2 FTD.
329 Configure local Backbone Router configuration for Thread 1.2 FTD. `bbr register` should be issued e…
1484 …fix is unavailable. When testing DNS-SD discovery proxy, the zone is not `local` and instead shoul…
1795 Print Thread link-local IPv6 address.
1962 - ipaddr: Peer address (SHOULD be link local address of the neighboring device).
2162 Locate the closest destination of an anycast address (i.e., find the destination's mesh local EID a…
3151 Get the prefix list in the local Network Data. Note: For the Thread 1.2 border router with backbone…
3187 Get the mesh local prefix.
3197 Set the mesh local prefix.
[all …]
DREADME_DATASET.md525 Get mesh local prefix.
533 Set mesh local prefix.
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dtest_generate_test_code.py473 args, local, arg_dispatch = parse_function_arguments(line)
475 self.assertEqual(local, '')
487 args, local, arg_dispatch = parse_function_arguments(line)
489 self.assertEqual(local,
510 args, local, arg_dispatch = parse_function_arguments(line)
512 self.assertEqual(local, '')
521 args, local, arg_dispatch = parse_function_arguments(line)
523 self.assertEqual(local, '')
532 args, local, arg_dispatch = parse_function_arguments(line)
534 self.assertEqual(local, '')
[all …]
/openthread-latest/third_party/mbedtls/repo/
DSECURITY.md82 Mbed TLS doesn't make any security guarantees against local non-timing-based
83 side channel attacks. If local non-timing attacks are present in a use case or
91 Mbed TLS doesn't make any security guarantees against local fault injection
92 attacks. If local fault injection attacks are present in a use case or a user
124 These timing attacks can be physical, local or depending on network latency
D.pylintrc32 # We're ok with short local or global variable names.
/openthread-latest/
DSTYLE_GUIDE.md30 …- The use of code in headers and, more specifically, the use of the non-local scope inline functio…
33 - Non-local Goto
36 …- There should be no calls to the C/C++ keyword goto. Exception: The use of local gotos for the pu…
54 - Private or local headers
79 … `OT_UNUSED_VARIABLE` macro at the top of a function or method before all local variable declarati…
144 - All variables that do not have such prefixes shall be assumed to be function local scope.
/openthread-latest/tests/toranj/
DREADME_NCP.md258 Sending 10 messages containing `"Hello there!"` from `node1` to `node2` using their mesh-local addr…
263 # Get the mesh local addresses
342 $ Node1.__init__() cmd: /usr/local/sbin/wpantund -o Config:NCP:SocketPath "system:../../examples/ap…
343 $ Node2.__init__() cmd: /usr/local/sbin/wpantund -o Config:NCP:SocketPath "system:../../examples/ap…
/openthread-latest/tools/harness-simulation/posix/etc/
DDockerfile95 && cmake -GNinja -DCMAKE_INSTALL_PREFIX="/usr/local" -DOT_COMM_REFERENCE_DEVICE=ON .. \
/openthread-latest/third_party/mbedtls/repo/tests/data_files/
DReadme-x509.txt49 - L -> CN=localhost (useful for local test servers)

12