/openthread-latest/tests/unit/ |
D | test_serial_number.cpp | 49 for (UintType number : kNumbers) in TestSerialNumber() local 51 VerifyOrQuit(!SerialNumber::IsGreater<UintType>(number, number)); in TestSerialNumber() 52 VerifyOrQuit(!SerialNumber::IsLess<UintType>(number, number)); in TestSerialNumber() 54 VerifyOrQuit(SerialNumber::IsGreater<UintType>(number + 1, number)); in TestSerialNumber() 55 VerifyOrQuit(SerialNumber::IsGreater<UintType>(number + kMid - 1, number)); in TestSerialNumber() 56 VerifyOrQuit(SerialNumber::IsGreater<UintType>(number + kMid, number)); in TestSerialNumber() 57 VerifyOrQuit(!SerialNumber::IsGreater<UintType>(number + kMid + 2, number)); in TestSerialNumber() 58 VerifyOrQuit(!SerialNumber::IsGreater<UintType>(number + kMax - 1, number)); in TestSerialNumber() 60 VerifyOrQuit(SerialNumber::IsLess<UintType>(number - 1, number)); in TestSerialNumber() 61 VerifyOrQuit(SerialNumber::IsLess<UintType>(number - kMid + 1, number)); in TestSerialNumber() [all …]
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_psa_crypto_attributes.function | 100 /* Initially, there is no slot number. */ 104 /* Test setting a slot number. */ 109 /* Test changing the slot number. */ 114 /* Test clearing the slot number. */ 124 /* Test that reset clears the slot number. */
|
D | test_suite_bignum_random.function | 62 /* Test whether bytes represents (in big-endian base 256) a number b that 67 * This function returns 1 if, when drawing a number between 0 and b, 68 * the probability that this number is at least 2^n is not negligible. 70 * number is above some threshold A. The threshold value is heuristic and 174 * same number, with the same limb count. */ 234 * same number, with the same limb count. */ 280 /* If upper_bound is small, stats[b] is the number of times the value b 281 * has been generated. Otherwise stats[b] is the number of times a 295 * negligible given the number of iterations. It must be less than 439 /* When the result has the right number of limbs, also test mod_raw
|
D | test_suite_x509parse.data | 3 x509_cert_info:"data_files/parse_input/server1.crt":"cert. version \: 3\nserial number \: 0… 7 x509_cert_info:"data_files/parse_input/server1.crt.der":"cert. version \: 3\nserial number … 11 x509_cert_info:"data_files/parse_input/server2.crt":"cert. version \: 3\nserial number \: 0… 15 x509_cert_info:"data_files/parse_input/server2.crt.der":"cert. version \: 3\nserial number … 19 x509_cert_info:"data_files/parse_input/test-ca.crt":"cert. version \: 3\nserial number \: 0… 23 x509_cert_info:"data_files/parse_input/test-ca.crt.der":"cert. version \: 3\nserial number … 27 x509_cert_info:"data_files/parse_input/cert_md5.crt":"cert. version \: 3\nserial number \: … 31 x509_cert_info:"data_files/parse_input/cert_sha1.crt":"cert. version \: 3\nserial number \:… 35 x509_cert_info:"data_files/parse_input/cert_sha224.crt":"cert. version \: 3\nserial number … 39 x509_cert_info:"data_files/parse_input/cert_sha256.crt":"cert. version \: 3\nserial number … [all …]
|
D | test_suite_oid.data | 144 # Encodes the number 0x0400000000 as a subidentifier which overflows 32-bits 172 OID from numeric string - first component not a number 175 OID from numeric string - second component not a number 184 OID from numeric string - third component not a number
|
D | test_suite_psa_crypto_attributes.data | 26 PSA key attributes: slot number
|
D | test_suite_bignum_mod_raw.function | 35 /* nx_32_int is the number of 32 bit limbs, if we have 64 bit limbs we need 36 * to halve the number of limbs to have the same size. */ 509 * `1 + N_limbs * (welem + 4)`, where welem is the number of elements in 566 /* Modulus gives the number of limbs; all inputs must have the same. */ 705 /* Number to convert must have same number of limbs as modulus */ 709 * same number of limbs too */ 769 /* Number to convert must have same number of limbs as modulus */ 773 * same number of limbs too */
|
D | test_suite_psa_its.function | 24 16 + /*UID (64-bit number in hex)*/ \ 25 16 + /*UID (64-bit number in hex)*/ \ 260 /* Overwrite the 1st byte of the file, the ITS magic number */
|
/openthread-latest/tools/harness-simulation/ |
D | README.md | 16 …- For each entry in `ot_build.ot`, update the value of `number` to be the number of OT FTD simulat… 17 …- For each entry in `ot_build.otbr`, update the value of `number` to be the number of OTBR simulat… 46 …imulations, and sniffer simulations and can be discovered on `eth0`. The number of each type of si…
|
/openthread-latest/third_party/mbedtls/repo/tests/data_files/dir4/ |
D | Readme | 23 5. nonzero pathlen constraint on an intermediate CA with maximum number of elements in the chain (v… 28 6. nonzero pathlen constraint on the root CA with maximum number of elements in the chain (valid) 33 7. pathlen constraint on the root CA with maximum number of elements and a self signed certificate …
|
/openthread-latest/tests/scripts/thread-cert/ |
D | README.md | 43 - \<number\> - select the node with id \<number\>. This will result in entering `>` mode.
|
/openthread-latest/src/core/diags/ |
D | README.md | 168 Transmit a fixed number of packets. 171 - packets: The number of packets to be sent. 224 ### diag radio receive \[async\] \<number\> \[lpr\] 226 Set the radio to receive mode and receive a specified number of frames. 229 - number: The number of frames expected to be received. 476 #### diag rcp echo -n \<number\> 478 RCP echoes the message with the given number of bytes.
|
D | factory_diags.cpp | 129 uint32_t number; in ProcessEcho() local 131 SuccessOrExit(error = Utils::CmdLineParser::ParseAsUint32(aArgs[1], number)); in ProcessEcho() 132 number = Min(number, static_cast<uint32_t>(kOutputMaxLen)); in ProcessEcho() 134 for (i = 0; i < number; i++) in ProcessEcho() 139 output[number] = '\0'; in ProcessEcho()
|
/openthread-latest/tools/harness-simulation/posix/ |
D | launch_testbed.py | 230 for tag, number in devices: 231 … advertise_devices(s, src, ven=ven, add=addr, nodeids=range(nodeid, nodeid + number), tag=tag) 232 nodeid += number
|
/openthread-latest/src/cli/ |
D | README_NETDATA.md | 212 Get the current length of (number of bytes) Partition's Thread Network Data. 245 The Network Data Publisher provides mechanisms to limit the number of similar Service and/or Prefix… 257 …[<version>]` to publish "DNS/SRP Service Anycast Address" with a given sequence number and version. 258 …]` to publish "DNS/SRP Service Unicast Address" with given address, port number and version info. … 259 …<version>]` to publish "DNS/SRP Service Unicast Address" with given port number, version, and the … 371 - Enterprise number 389 - Joiner UDP port number if present in Dataset or `-` otherwise 457 - discerner: The Joiner discerner in format `number/length`.
|
D | README_SRP_SERVER.md | 51 Address mode specifies how the address and port number are determined by the SRP server and this is… 175 Get or set the sequence number used with anycast address mode. 177 The sequence number is included in "DNS/SRP Service Anycast Address" entry published in the Network…
|
D | README_COAPS.md | 243 …number of allowed attempts, successful or failed, to connect to the CoAP Secure server. The defaul… 248 - Specifying a number: `check-peer-cert` is `true`, and the `max-conn-attempts` value is the number…
|
D | README_SRP_CLIENT.md | 296 Print the server socket address (IPv6 address and port number). 316 Print the server port number 341 Add a service with a given instance name, service name, port number, priority, weight and txt value… 408 Start the SRP client with a given server IPv6 address and port number.
|
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | bignum_data.py | 12 from Cryptodome.Util.number import isPrime, getPrime #type: ignore #pylint: disable=import-error
|
/openthread-latest/third_party/mbedtls/repo/.github/ISSUE_TEMPLATE/ |
D | bug_report.md | 16 Mbed TLS version (number or commit id):
|
/openthread-latest/tools/harness-thci/ |
D | README.md | 24 …the "OpenThread: TI CC2538DK" reference device to the **Test Bed** section with the desired number. 46 …read_WpanCtl: Wpantund + NCP" reference device to the **Test Bed** section with the desired number. 66 …NCP (SSH)" reference device to the **Test Bed** section with the desired number. Then fill in the …
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | mbed-crypto-storage-specification.md | 28 * [Persistent transparent keys](#key-file-format-for-0.1.0) designated by a [slot number](#key-name… 226 …ferences to keys in a secure element. In such key files, the key material contains the slot number. 275 * For an opaque key (key in a secure element): slot number (8 bytes), in platform endianness. 291 * slot number (8 bytes): `psa_key_slot_number_t` value. This is the unique designation of the key f… 297 * The slot in the secure element designated by the slot number. 301 * The slot in the secure element designated by the slot number. 335 * For an opaque key (key in a secure element): slot number (8 bytes), in platform endianness. 345 Note: this is the first version that is officially supported. The version number is still 0. 360 … registered drivers (`MBEDTLS_PSA_CRYPTO_SE_C`). The driver picks a slot number which is stored in… 426 …* For an opaque key (key in a dynamic secure element): slot number (8 bytes), in platform endianne… [all …]
|
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/driver_templates/ |
D | OS-template-opaque.jinja | 6 * nest_indent: number of extra spaces to indent the code to.
|
D | OS-template-transparent.jinja | 6 * nest_indent: number of extra spaces to indent the code to.
|
/openthread-latest/third_party/mbedtls/repo/configs/ |
D | README.txt | 4 a restricted number of ciphersuites) and aim at minimizing resource usage for
|